Skip to content

Commit

Permalink
avoid Object.getOwnPropertyNames polyfill dependency since the base…
Browse files Browse the repository at this point in the history
… method is enough
  • Loading branch information
zloirock committed Oct 25, 2023
1 parent b146ee7 commit 43d3d14
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@
var $ = require('../internals/export');
var shared = require('../internals/shared');
var getBuiltIn = require('../internals/get-built-in');
var getBuiltInStaticMethod = require('../internals/get-built-in-static-method');
var uncurryThis = require('../internals/function-uncurry-this');
var isSymbol = require('../internals/is-symbol');
var wellKnownSymbol = require('../internals/well-known-symbol');

var Symbol = getBuiltIn('Symbol');
var $isWellKnownSymbol = Symbol.isWellKnownSymbol;
var getOwnPropertyNames = getBuiltInStaticMethod('Object', 'getOwnPropertyNames');
var getOwnPropertyNames = Object.getOwnPropertyNames;
var thisSymbolValue = uncurryThis(Symbol.prototype.valueOf);
var WellKnownSymbolsStore = shared('wks');

Expand Down

0 comments on commit 43d3d14

Please sign in to comment.