update, text, response

This commit is contained in:
2025-11-02 11:09:14 +01:00
parent 14776c86b0
commit eed8a4ddcf
2794 changed files with 156786 additions and 129204 deletions

View File

@@ -4323,6 +4323,7 @@
"enable",
"enableBackground",
"enableDelegations",
"enableHighAccuracy",
"enableStyleSheetsForSet",
"enableVertexAttribArray",
"enabled",
@@ -5553,6 +5554,7 @@
"maxWidth",
"maxZoom",
"maximize",
"maximumAge",
"maximumFractionDigits",
"measure",
"measureText",

View File

@@ -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;

View File

@@ -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() {