Opal-Estate-Pro/node_modules/core-js/modules/_add-to-unscopables.js

8 lines
297 B
JavaScript
Raw Normal View History

2019-09-13 06:27:52 +02:00
// 22.1.3.31 Array.prototype[@@unscopables]
var UNSCOPABLES = require('./_wks')('unscopables');
var ArrayProto = Array.prototype;
if (ArrayProto[UNSCOPABLES] == undefined) require('./_hide')(ArrayProto, UNSCOPABLES, {});
module.exports = function (key) {
ArrayProto[UNSCOPABLES][key] = true;
};