Sha256: 44ae39ff5794bda4c331c02af77eff0d914627aca62b573b3cb534eb6fb03906
Contents?: true
Size: 242 Bytes
Versions: 14
Compression:
Stored size: 242 Bytes
Contents
var Enumerator = Rx.internals.Enumerator = function (next) { this._next = next; }; Enumerator.prototype.next = function () { return this._next(); }; Enumerator.prototype[$iterator$] = function () { return this; }
Version data entries
14 entries across 7 versions & 1 rubygems