| Server IP : 85.214.239.14 / Your IP : 216.73.216.27 Web Server : Apache/2.4.65 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 8.2.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/2/cwd/usr/lib/node_modules/pm2/node_modules/lazy/test/ |
Upload File : |
var assert = require('assert');
var Lazy = require('..');
exports.bucket = function () {
var joined = false;
var lazy = new Lazy;
lazy.bucket('', function splitter (acc, x) {
var accx = acc + x;
var i = accx.indexOf('\n');
if (i >= 0) {
this(accx.slice(0, i));
return splitter.call(this, accx.slice(i + 1), '');
}
return accx;
}).join(function (lines) {
assert.deepEqual(lines, 'foo bar baz quux moo'.split(' '));
joined = true;
});
setTimeout(function () {
lazy.emit('data', 'foo\nba');
}, 50);
setTimeout(function () {
lazy.emit('data', 'r');
}, 100);
setTimeout(function () {
lazy.emit('data', '\nbaz\nquux\nm');
}, 150);
setTimeout(function () {
lazy.emit('data', 'oo');
}, 200);
setTimeout(function () {
lazy.emit('data', '\nzoom');
lazy.emit('end');
assert.ok(joined);
}, 250);
};