Skip to content

Commit

Permalink
[squash] more uniform
Browse files Browse the repository at this point in the history
  • Loading branch information
refack committed May 12, 2017
1 parent 49bbdfc commit 806c286
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions lib/internal/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -258,14 +258,19 @@ exports.promisify = promisify;
exports.customPromisifyArgs = kCustomPromisifyArgsSymbol;

const intrinsic = {
FunctionApply: Function.prototype.apply,
FunctionCall: Function.prototype.call,
ObjectAssign: Object.assign,
ObjectSetPrototypeOf: Object.setPrototypeOf,
Reflect: Reflect,
ReflectMethods: Object.assign({}, Reflect),
Function: Function,
FunctionPrototype: Function.prototype,
FunctionPrototypeMethods: Object.assign({}, Function.prototype),
Object: Object,
ObjectMethods: Object.assign({}, Object),
ObjectPrototype: Object.prototype,
ObjectPrototypeMethod: Object.assign({}, Object.prototype),
Array: Array,
ObjectPrototype: Object.assign({}, Object.prototype),
ArrayPrototype: Object.assign({}, Array.prototype)
ArrayMethods: Object.assign({}, Array),
ArrayPrototype: Array.prototype,
ArrayPrototypeMethods: Object.assign({}, Array.prototype)
};

module.exports = exports = {
Expand Down

0 comments on commit 806c286

Please sign in to comment.