Initial Save

This commit is contained in:
jackbeeby
2025-03-28 12:30:19 +11:00
parent e381994f19
commit d8773925e8
9910 changed files with 982718 additions and 0 deletions

29
node_modules/es-abstract/2023/GetIteratorFromMethod.js generated vendored Normal file
View File

@@ -0,0 +1,29 @@
'use strict';
var $TypeError = require('es-errors/type');
var Call = require('./Call');
var GetV = require('./GetV');
var IsCallable = require('./IsCallable');
var isObject = require('../helpers/isObject');
// https://262.ecma-international.org/14.0/#sec-getiteratorfrommethod
module.exports = function GetIteratorFromMethod(obj, method) {
if (!IsCallable(method)) {
throw new $TypeError('method must be a function');
}
var iterator = Call(method, obj); // step 1
if (!isObject(iterator)) {
throw new $TypeError('iterator must return an object'); // step 2
}
var nextMethod = GetV(iterator, 'next'); // step 3
return { // steps 4-5
'[[Iterator]]': iterator,
'[[NextMethod]]': nextMethod,
'[[Done]]': false
};
};