Skip to content

Commit 90a57dd

Browse files
committedMay 17, 2022
minor stylistic change
1 parent 7be1cf1 commit 90a57dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎packages/core-js/internals/add-to-unscopables.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
var wellKnownSymbol = require('../internals/well-known-symbol');
22
var create = require('../internals/object-create');
3-
var definePropertyModule = require('../internals/object-define-property');
3+
var defineProperty = require('../internals/object-define-property').f;
44

55
var UNSCOPABLES = wellKnownSymbol('unscopables');
66
var ArrayPrototype = Array.prototype;
77

88
// Array.prototype[@@unscopables]
99
// https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
1010
if (ArrayPrototype[UNSCOPABLES] == undefined) {
11-
definePropertyModule.f(ArrayPrototype, UNSCOPABLES, {
11+
defineProperty(ArrayPrototype, UNSCOPABLES, {
1212
configurable: true,
1313
value: create(null)
1414
});

0 commit comments

Comments
 (0)
Please sign in to comment.