UNPKG

bbo

Version:

bbo is a utility library of zero dependencies for javascript.

11 lines (8 loc) 219 B
'use strict'; /** * Capitalizes the first letter of a string. */ function capitalize(target) { return String(target).charAt(0).toUpperCase() + String(target).slice(1).toLowerCase(); } module.exports = capitalize;