sitespeed.io/lib/support/helpers/cap.js

6 lines
111 B
JavaScript

'use strict';
module.exports = function(word) {
return word.substr(0, 1).toUpperCase() + word.substr(1);
};