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