source: imaps-frontend/node_modules/es-abstract/helpers/getIteratorMethod.js

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[d565449]1'use strict';
2
3var hasSymbols = require('has-symbols')();
4var GetIntrinsic = require('get-intrinsic');
5var callBound = require('call-bind/callBound');
6var isString = require('is-string');
7
8var $iterator = GetIntrinsic('%Symbol.iterator%', true);
9var $stringSlice = callBound('String.prototype.slice');
10var $String = GetIntrinsic('%String%');
11
12module.exports = function getIteratorMethod(ES, iterable) {
13 var usingIterator;
14 if (hasSymbols) {
15 usingIterator = ES.GetMethod(iterable, $iterator);
16 } else if (ES.IsArray(iterable)) {
17 usingIterator = function () {
18 var i = -1;
19 var arr = this; // eslint-disable-line no-invalid-this
20 return {
21 next: function () {
22 i += 1;
23 return {
24 done: i >= arr.length,
25 value: arr[i]
26 };
27 }
28 };
29 };
30 } else if (isString(iterable)) {
31 usingIterator = function () {
32 var i = 0;
33 return {
34 next: function () {
35 var nextIndex = ES.AdvanceStringIndex($String(iterable), i, true);
36 var value = $stringSlice(iterable, i, nextIndex);
37 i = nextIndex;
38 return {
39 done: nextIndex > iterable.length,
40 value: value
41 };
42 }
43 };
44 };
45 }
46 return usingIterator;
47};
Note: See TracBrowser for help on using the repository browser.