UNPKG

nodejs-rigorous

Version:
14 lines (10 loc) 283 B
module.exports = { capitalizeFirstLetter: (string) => { try { return string.charAt(0).toUpperCase() + string.slice(1); } catch (err) { err.response = 'capitalizeFirstLetter: String not valid'; throw err; } }, };