mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-04 12:40:05 +02:00
add some packages
This commit is contained in:
17
node_modules/core-js/modules/es6.string.iterator.js
generated
vendored
Normal file
17
node_modules/core-js/modules/es6.string.iterator.js
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
'use strict';
|
||||
var $at = require('./_string-at')(true);
|
||||
|
||||
// 21.1.3.27 String.prototype[@@iterator]()
|
||||
require('./_iter-define')(String, 'String', function (iterated) {
|
||||
this._t = String(iterated); // target
|
||||
this._i = 0; // next index
|
||||
// 21.1.5.2.1 %StringIteratorPrototype%.next()
|
||||
}, function () {
|
||||
var O = this._t;
|
||||
var index = this._i;
|
||||
var point;
|
||||
if (index >= O.length) return { value: undefined, done: true };
|
||||
point = $at(O, index);
|
||||
this._i += point.length;
|
||||
return { value: point, done: false };
|
||||
});
|
Reference in New Issue
Block a user