We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 631cb42 commit 3963e0fCopy full SHA for 3963e0f
lib/internal/util.js
@@ -278,3 +278,14 @@ promisify.custom = kCustomPromisifiedSymbol;
278
279
exports.promisify = promisify;
280
exports.customPromisifyArgs = kCustomPromisifyArgsSymbol;
281
+
282
+exports.intrinsic = {
283
+ FunctionApply: Function.prototype.apply,
284
+ FunctionCall: Function.prototype.call,
285
+ ObjectAssign: Object.assign,
286
+ ObjectSetPrototypeOf: Object.setPrototypeOf,
287
+ Object: Object,
288
+ Array: Array,
289
+ ObjectPrototype: Object.assign({}, Object.prototype),
290
+ ArrayPrototype: Object.assign({}, Array.prototype)
291
+};
0 commit comments