Files
discordeno/packages/utils/src/utils.ts
2023-01-12 12:48:52 -06:00

31 lines
1.1 KiB
TypeScript

// import type { ImageFormat, ImageSize } from '@discordeno/types'
import type { ImageFormat, ImageSize } from '@discordeno/types'
/** 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),
)
}
/** Help format an image url. */
export function formatImageURL(url: string, size: ImageSize = 128, format?: ImageFormat): string {
return `${url}.${format ?? (url.includes('/a_') ? 'gif' : 'jpg')}?size=${size}`
}
// // 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 */
// 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)
// }