37 lines
897 B
Plaintext
37 lines
897 B
Plaintext
'use strict';
|
|
|
|
var $TypeError = require('es-errors/type');
|
|
|
|
var GetIteratorDirect = require('../aos/GetIteratorDirect');
|
|
var IteratorStepValue = require('../aos/IteratorStepValue');
|
|
var Type = require('es-abstract/2023/Type');
|
|
|
|
var callBound = require('call-bind/callBound');
|
|
|
|
var $push = callBound('Array.prototype.push');
|
|
|
|
module.exports = function toArray() {
|
|
if (this instanceof toArray) {
|
|
throw new $TypeError('`toArray` is not a constructor');
|
|
}
|
|
|
|
var O = this; // step 1
|
|
|
|
if (Type(O) !== 'Object') {
|
|
throw new $TypeError('`this` value must be an Object'); // step 2
|
|
}
|
|
|
|
var iterated = GetIteratorDirect(O); // step 3
|
|
|
|
var items = []; // step 4
|
|
|
|
// eslint-disable-next-line no-constant-condition
|
|
while (true) { // step 5
|
|
var value = IteratorStepValue(iterated); // step 5.a
|
|
if (iterated['[[Done]]']) {
|
|
return items; // step 5.b
|
|
}
|
|
$push(items, value); // step 5.d
|
|
}
|
|
};
|