Sha256: 03e1d3cfe7e144d3021349d1263ad7e4410b975aab7f1c7c2c5e414ca147a65b
Contents?: true
Size: 437 Bytes
Versions: 62
Compression:
Stored size: 437 Bytes
Contents
/* */ 'use strict'; var $at = require('./$.string-at')(true); require('./$.iter-define')(String, 'String', function(iterated) { this._t = String(iterated); this._i = 0; }, function() { var O = this._t, index = this._i, point; if (index >= O.length) return { value: undefined, done: true }; point = $at(O, index); this._i += point.length; return { value: point, done: false }; });
Version data entries
62 entries across 31 versions & 1 rubygems