1// 22.1.3.31 Array.prototype[@@unscopables]
2var UNSCOPABLES = require('./_wks')('unscopables');
3var ArrayProto = Array.prototype;
4if (ArrayProto[UNSCOPABLES] == undefined) require('./_hide')(ArrayProto, UNSCOPABLES, {});
5module.exports = function (key) {
6  ArrayProto[UNSCOPABLES][key] = true;
7};
8