update, text, response
This commit is contained in:
2
node_modules/uglify-js/tools/domprops.json
generated
vendored
2
node_modules/uglify-js/tools/domprops.json
generated
vendored
@@ -4323,6 +4323,7 @@
|
||||
"enable",
|
||||
"enableBackground",
|
||||
"enableDelegations",
|
||||
"enableHighAccuracy",
|
||||
"enableStyleSheetsForSet",
|
||||
"enableVertexAttribArray",
|
||||
"enabled",
|
||||
@@ -5553,6 +5554,7 @@
|
||||
"maxWidth",
|
||||
"maxZoom",
|
||||
"maximize",
|
||||
"maximumAge",
|
||||
"maximumFractionDigits",
|
||||
"measure",
|
||||
"measureText",
|
||||
|
||||
9
node_modules/uglify-js/tools/node.js
generated
vendored
9
node_modules/uglify-js/tools/node.js
generated
vendored
@@ -97,10 +97,15 @@ function infer_options(options) {
|
||||
return result.error && result.error.defs;
|
||||
}
|
||||
|
||||
exports.default_options = function() {
|
||||
exports.default_options = function(component) {
|
||||
if (component) {
|
||||
var options = { module: false };
|
||||
options[component] = { 0: 0 };
|
||||
return infer_options(options);
|
||||
}
|
||||
var defs = infer_options({ 0: 0 });
|
||||
Object.keys(defs).forEach(function(component) {
|
||||
var options = {};
|
||||
var options = { module: false };
|
||||
options[component] = { 0: 0 };
|
||||
if (options = infer_options(options)) {
|
||||
defs[component] = options;
|
||||
|
||||
2
node_modules/uglify-js/tools/tty.js
generated
vendored
2
node_modules/uglify-js/tools/tty.js
generated
vendored
@@ -6,7 +6,7 @@ try {
|
||||
} catch (e) {
|
||||
// ensure output buffers are flushed before process termination
|
||||
var exit = process.exit;
|
||||
process.exit = function() {
|
||||
if ("bufferSize" in process.stdout) process.exit = function() {
|
||||
var args = [].slice.call(arguments);
|
||||
process.once("uncaughtException", function() {
|
||||
(function callback() {
|
||||
|
||||
Reference in New Issue
Block a user