mirror of
https://github.com/github/codeql-action.git
synced 2026-04-29 02:18:47 +00:00
Rebuild
This commit is contained in:
Generated
+16
-13
@@ -27668,7 +27668,7 @@ var require_package = __commonJS({
|
||||
"fast-deep-equal": "^3.1.3",
|
||||
"follow-redirects": "^1.15.11",
|
||||
"get-folder-size": "^5.0.0",
|
||||
"js-yaml": "^4.1.0",
|
||||
"js-yaml": "^4.1.1",
|
||||
jsonschema: "1.4.1",
|
||||
long: "^5.3.2",
|
||||
"node-forge": "^1.3.1",
|
||||
@@ -81311,6 +81311,18 @@ function charFromCodepoint(c) {
|
||||
(c - 65536 & 1023) + 56320
|
||||
);
|
||||
}
|
||||
function setProperty(object, key, value) {
|
||||
if (key === "__proto__") {
|
||||
Object.defineProperty(object, key, {
|
||||
configurable: true,
|
||||
enumerable: true,
|
||||
writable: true,
|
||||
value
|
||||
});
|
||||
} else {
|
||||
object[key] = value;
|
||||
}
|
||||
}
|
||||
var simpleEscapeCheck = new Array(256);
|
||||
var simpleEscapeMap = new Array(256);
|
||||
for (i = 0; i < 256; i++) {
|
||||
@@ -81430,7 +81442,7 @@ function mergeMappings(state, destination, source, overridableKeys) {
|
||||
for (index = 0, quantity = sourceKeys.length; index < quantity; index += 1) {
|
||||
key = sourceKeys[index];
|
||||
if (!_hasOwnProperty$1.call(destination, key)) {
|
||||
destination[key] = source[key];
|
||||
setProperty(destination, key, source[key]);
|
||||
overridableKeys[key] = true;
|
||||
}
|
||||
}
|
||||
@@ -81470,16 +81482,7 @@ function storeMappingPair(state, _result, overridableKeys, keyTag, keyNode, valu
|
||||
state.position = startPos || state.position;
|
||||
throwError(state, "duplicated mapping key");
|
||||
}
|
||||
if (keyNode === "__proto__") {
|
||||
Object.defineProperty(_result, keyNode, {
|
||||
configurable: true,
|
||||
enumerable: true,
|
||||
writable: true,
|
||||
value: valueNode
|
||||
});
|
||||
} else {
|
||||
_result[keyNode] = valueNode;
|
||||
}
|
||||
setProperty(_result, keyNode, valueNode);
|
||||
delete overridableKeys[keyNode];
|
||||
}
|
||||
return _result;
|
||||
@@ -86438,5 +86441,5 @@ undici/lib/websocket/frame.js:
|
||||
(*! ws. MIT License. Einar Otto Stangvik <einaros@gmail.com> *)
|
||||
|
||||
js-yaml/dist/js-yaml.mjs:
|
||||
(*! js-yaml 4.1.0 https://github.com/nodeca/js-yaml @license MIT *)
|
||||
(*! js-yaml 4.1.1 https://github.com/nodeca/js-yaml @license MIT *)
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user