/
TON618OFF
/
FinalPWHTML
Обзор
Документация
Войти
/
TON618OFF
/
FinalPWHTML
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
node_modules/es-iterator-helpers/Iterator/implementation.js
29 строк
894 B
TON618OFF
не ну это ваще
23 июн 2024, 00:30
23 июн 2024, 00:30
e27ae20
Код
Авторство
О чём код?
'use strict'; var GetIntrinsic = require('get-intrinsic'); var hasPropertyDescriptors = require('has-property-descriptors')(); var $TypeError = require('es-errors/type'); var $defineProperty = hasPropertyDescriptors && GetIntrinsic('%Object.defineProperty%', true); var iterProto = require('iterator.prototype'); var callBound = require('call-bind/callBound'); var $isPrototypeOf = callBound('Object.prototype.isPrototypeOf'); var $Iterator = typeof Iterator === 'function' ? Iterator : function Iterator() { if ( !(this instanceof Iterator) || this.constructor === Iterator || !$isPrototypeOf(Iterator, this.constructor) ) { throw new $TypeError('`Iterator` can not be called or constructed directly'); } }; if ($Iterator.prototype !== iterProto) { $Iterator.prototype = iterProto; } $defineProperty($Iterator, 'prototype', { writable: false }); module.exports = $Iterator;