Afanasev_Stepan_PIbd-21_IP/ИП 3 лаба/node_modules/es-shim-unscopables/index.js
[USERNAME] 0dd26716dc Lab2-5
2024-01-10 16:11:49 +04:00

22 lines
555 B
JavaScript

'use strict';
var hasOwn = require('hasown');
var hasUnscopables = typeof Symbol === 'function' && typeof Symbol.unscopables === 'symbol';
var map = hasUnscopables && Array.prototype[Symbol.unscopables];
var $TypeError = TypeError;
module.exports = function shimUnscopables(method) {
if (typeof method !== 'string' || !method) {
throw new $TypeError('method must be a non-empty string');
}
if (!hasOwn(Array.prototype, method)) {
throw new $TypeError('method must be on Array.prototype');
}
if (hasUnscopables) {
map[method] = true;
}
};