Defers invoking the function until the current call stack has cleared
const test = (msg) => console.log(msg);defer(test, 'a'), test('b'); // logs 'b' then 'a'
Rest
Generated using TypeDoc
Defers invoking the function until the current call stack has cleared
Example