varwellKnownSymbol=require('../internals/well-known-symbol');varcreate=require('../internals/object-create');vardefinePropertyModule=require('../internals/object-define-property');varUNSCOPABLES=wellKnownSymbol('unscopables');varArrayPrototype=Array.prototype;// Array.prototype[@@unscopables]// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopablesif(ArrayPrototype[UNSCOPABLES]==undefined){definePropertyModule.f(ArrayPrototype,UNSCOPABLES,{configurable:true,value:create(null)});}// add a key to Array.prototype[@@unscopables]module.exports=function(key){ArrayPrototype[UNSCOPABLES][key]=true;};