aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/modules/_add-to-unscopables.js
blob: a2dd97d9984520ec94f7fe5472110a31353137f7 (plain)
1
2
3
4
5
6
7
// 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;
};