UNPKG

@dotenvx/dotenvx-pro

Version:

Secrets Management – Done Right. 🏆

10 lines (7 loc) 213 B
function buildApiError (statusCode, json) { const error = new Error(json.error.message) error.code = statusCode.toString() error.help = JSON.stringify(json) return error } module.exports = buildApiError