blob: b7d046794c5dee47fee42054d97a73ac8df0b6b1 [file] [edit]
'use strict';
const common = require('../common');
// clearImmediate should be a noop if anything other than an Immediate
// is passed to it.
const t = setTimeout(common.mustCall());
clearImmediate(t);
setTimeout(common.mustCall());
setTimeout(common.mustCall());