mirror of
https://github.com/Aviortheking/games.git
synced 2025-04-24 11:52:09 +00:00
6 lines
123 B
TypeScript
6 lines
123 B
TypeScript
export default class AstroUtils {
|
|
public static async wrap<T = void>(fn: () => T | Promise<T>) {
|
|
return await fn()
|
|
}
|
|
}
|