1'use strict'; 2require('../common'); 3 4module.exports = function tick(x, cb) { 5 function ontick() { 6 if (--x === 0) { 7 if (typeof cb === 'function') cb(); 8 } else { 9 setImmediate(ontick); 10 } 11 } 12 setImmediate(ontick); 13}; 14