lcfirst
Lowercase the first character of a stringvar lcfirst = require('lcfirst');
lcfirst('Hello World'); // 'hello World'
It won't lowercase an initialism/acronym:lcfirst('NASA makes rockets'); // 'NASA makes rockets'
var lcfirst = require('lcfirst');
lcfirst('Hello World'); // 'hello World'
It won't lowercase an initialism/acronym:lcfirst('NASA makes rockets'); // 'NASA makes rockets'
Bytes is a JavaScript newsletter you'll actually enjoy reading.
Delivered every Monday, for free.