Skip to content

Instantly share code, notes, and snippets.

@jeromy-vandusen-obs
Created July 13, 2021 17:42
Show Gist options
  • Save jeromy-vandusen-obs/8b2c0af774d826a3a6d0d5ad5f4dadae to your computer and use it in GitHub Desktop.
Save jeromy-vandusen-obs/8b2c0af774d826a3a6d0d5ad5f4dadae to your computer and use it in GitHub Desktop.
JavaScript Delay Function

JavaScript Pause Function

Use this function to create a timed delay. This is for things like stubbing APIs in development.

function delay(timeInMs) {
  await new Promise((resolve) => setTimeout(resolve, timeInMs));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment