UNPKG

@rocket.chat/string-helpers

Version:

Helper functions for string manipulation

7 lines 191 B
export var capitalize = function (s) { if (typeof s !== 'string') { return ''; } return (s.charAt(0).toUpperCase() + s.slice(1)); }; //# sourceMappingURL=capitalize.js.map