UNPKG

151 BJavaScriptView Raw
1'use strict';
2
3module.exports = function(fn, timeout) {
4
5 if (!timeout) { timeout = 1500; }
6
7 const t = setTimeout(fn, timeout);
8
9 t.unref();
10};
\No newline at end of file