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