Created
January 5, 2017 12:05
-
-
Save Garbee/ade1bd9fb9186592e44247bfa837100a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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