Extract song info from odesli (song.link)
This commit is contained in:
5
src/lib/sleep.ts
Normal file
5
src/lib/sleep.ts
Normal file
@ -0,0 +1,5 @@
|
||||
export function sleep(timeInMs: number): Promise<undefined> {
|
||||
return new Promise((resolve) => {
|
||||
setTimeout(resolve, timeInMs);
|
||||
});
|
||||
}
|
Reference in New Issue
Block a user