mirror of
https://github.com/revoltchat/revite.git
synced 2025-02-24 01:01:00 -05:00
4 lines
65 B
TypeScript
4 lines
65 B
TypeScript
|
export function defer(cb: () => void) {
|
||
|
setTimeout(cb, 0);
|
||
|
}
|