UNPKG

203 BJavaScriptView Raw
1/*
2string:capitalize
3*/"use strict"
4
5var capitalize = function(self){
6 return (self + "").replace(/\b[a-z]/g, function(match){
7 return match.toUpperCase()
8 })
9}
10
11module.exports = capitalize