UNPKG

toloframework

Version:

Javascript/HTML/CSS compiler for Firefox OS or nodewebkit apps using modules in the nodejs style.

11 lines (8 loc) 242 B
"use strict"; /** * @param {string} text - String to capitalize. * @return {string} `text` with the first letter uppercased. */ module.exports = function(text) { return text.charAt(0).toUpperCase() + text.substr(1).toLowerCase(); };