How to use 'node sleep' in JavaScript

Every line of 'node sleep' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
100async sleep(n){
101 return new Promise( (resolve, reject) => setTimeout(resolve, n) );
102}

Related snippets