UNPKG

node-rigorous

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