UNPKG

242 BJavaScriptView Raw
1"use strict";
2
3
4/**
5 * @param {string} text - String to capitalize.
6 * @return {string} `text` with the first letter uppercased.
7 */
8module.exports = function(text) {
9 return text.charAt(0).toUpperCase() + text.substr(1).toLowerCase();
10};