mirror of
https://github.com/nodejs/node.git
synced 2025-05-01 17:03:34 +00:00

The 'equals' comparison operator was '==' instead of the more strict '===', so it has been changed to be more strict PR-URL: https://github.com/nodejs/node/pull/8190 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
33 lines
718 B
JavaScript
33 lines
718 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
// https://github.com/joyent/node/issues/2079 - zero timeout drops extra args
|
|
{
|
|
setTimeout(common.mustCall(f), 0, 'foo', 'bar', 'baz');
|
|
setTimeout(function() {}, 0);
|
|
|
|
function f(a, b, c) {
|
|
assert.strictEqual(a, 'foo');
|
|
assert.strictEqual(b, 'bar');
|
|
assert.strictEqual(c, 'baz');
|
|
}
|
|
}
|
|
|
|
{
|
|
let ncalled = 0;
|
|
|
|
const iv = setInterval(f, 0, 'foo', 'bar', 'baz');
|
|
|
|
function f(a, b, c) {
|
|
assert.strictEqual(a, 'foo');
|
|
assert.strictEqual(b, 'bar');
|
|
assert.strictEqual(c, 'baz');
|
|
if (++ncalled === 3) clearTimeout(iv);
|
|
}
|
|
|
|
process.on('exit', function() {
|
|
assert.strictEqual(ncalled, 3);
|
|
});
|
|
}
|