Skip to content

Instantly share code, notes, and snippets.

@Garbee
Created January 5, 2017 12:05
Show Gist options
  • Save Garbee/ade1bd9fb9186592e44247bfa837100a to your computer and use it in GitHub Desktop.
Save Garbee/ade1bd9fb9186592e44247bfa837100a to your computer and use it in GitHub Desktop.
/**
* Verify a timeout value is under 30 minutes.
*/
function verifyTimeout(timeout) {
if (timeout > 1.8e+6) {
throw new Error('Timeouts must be under 30 minutes');
}
return timeout;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment