Last active
April 18, 2018 01:24
-
-
Save jossmac/cf792fca4a73a3cd6d0056d3a136d51d to your computer and use it in GitHub Desktop.
Helper function for required parameters, from http://tinyurl.com/ychkf5oq
This file contains 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 | |
} | |
/* | |
function findUsersByRole ({ | |
role = requiredParam('role'), | |
withContactInfo, | |
includeInactive | |
} = {}) {...} | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment