123456789101112131415161718192021 |
-
- var space = require('to-space-case')
-
- /**
- * Export.
- */
-
- module.exports = toCapitalCase
-
- /**
- * Convert a `string` to capital case.
- *
- * @param {String} string
- * @return {String}
- */
-
- function toCapitalCase(string) {
- return space(string).replace(/(^|\s)(\w)/g, function (matches, previous, letter) {
- return previous + letter.toUpperCase()
- })
- }
|