mirror of
https://github.com/discordeno/discordeno.git
synced 2026-05-30 07:20:08 +00:00
20 lines
800 B
TypeScript
20 lines
800 B
TypeScript
/** Pause the execution for a given amount of milliseconds. */
|
|
export async function delay(ms: number): Promise<void> {
|
|
// eslint-disable-next-line @typescript-eslint/return-await
|
|
return new Promise(
|
|
(resolve): NodeJS.Timeout =>
|
|
setTimeout((): void => {
|
|
resolve()
|
|
}, ms),
|
|
)
|
|
}
|
|
|
|
// Typescript is not so good as we developers so we need this little utility function to help it out
|
|
// Taken from https://fettblog.eu/typescript-hasownproperty/
|
|
/** TS save way to check if a property exists in an object */
|
|
// eslint-disable-next-line @typescript-eslint/ban-types
|
|
export function hasProperty<T extends {}, Y extends PropertyKey = string>(obj: T, prop: Y): obj is T & Record<Y, unknown> {
|
|
// eslint-disable-next-line no-prototype-builtins
|
|
return obj.hasOwnProperty(prop)
|
|
}
|