All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.app.shared.tools.async-utils.ts Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
export function delay(ms: number) {
    return new Promise(resolve => setTimeout(resolve, ms));
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy