@forabi/memfs
Version:
In-memory file-system with Node's fs API.
21 lines (15 loc) • 562 B
text/typescript
export type TSetTimeout = (callback: (...args) => void, time?: number, args?: any[]) => any;
/**
* `setTimeoutUnref` is just like `setTimeout`, only in Node's environment it will "unref" its macro task.
* @param callback
* @param time
* @param args
* @returns {any}
*/
function setTimeoutUnref(callback, time?, args?): object {
const ref = setTimeout.apply(null, arguments);
/* istanbul ignore next */
if(ref && (typeof ref === 'object') && (typeof ref.unref === 'function')) ref.unref();
return ref;
}
export default setTimeoutUnref;