mirror of
https://github.com/revoltchat/revite.git
synced 2024-12-28 08:14:46 -05:00
4 lines
65 B
TypeScript
4 lines
65 B
TypeScript
|
export function defer(cb: () => void) {
|
||
|
setTimeout(cb, 0);
|
||
|
}
|