aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/modules/$.add-to-unscopables.js
blob: bffd16137c4881a6828d774ec12d65d631d7e8cb (plain)
1
2
3
4
5
6
7
// 22.1.3.31 Array.prototype[@@unscopables]
var UNSCOPABLES = require('./$.wks')('unscopables')
  , ArrayProto  = Array.prototype;
if(ArrayProto[UNSCOPABLES] == undefined)require('./$.hide')(ArrayProto, UNSCOPABLES, {});
module.exports = function(key){
  ArrayProto[UNSCOPABLES][key] = true;
};