Created
February 14, 2018 15:45
-
-
Save arcdev1/f0cb57db538bd61328ecba3f689381ca 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
function requiredParam (param) { | |
const requiredParamError = new Error( | |
`Required parameter, "${param}" is missing.` | |
) | |
// preserve original stack trace | |
if (typeof Error.captureStackTrace === ‘function’) { | |
Error.captureStackTrace( | |
requiredParamError, | |
requiredParam | |
) | |
} | |
throw requiredParamError | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment