diff options
Diffstat (limited to 'node_modules/locutus/python/string/capwords.js')
-rw-r--r-- | node_modules/locutus/python/string/capwords.js | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/node_modules/locutus/python/string/capwords.js b/node_modules/locutus/python/string/capwords.js new file mode 100644 index 0000000..ddd855a --- /dev/null +++ b/node_modules/locutus/python/string/capwords.js @@ -0,0 +1,21 @@ +'use strict'; + +module.exports = function capwords(str) { + // discuss at: http://locutus.io/python/capwords/ + // original by: Jonas Raoni Soares Silva (http://www.jsfromhell.com) + // improved by: Waldo Malqui Silva (http://waldo.malqui.info) + // improved by: Robin + // improved by: Kevin van Zonneveld (http://kvz.io) + // bugfixed by: Onno Marsman (https://twitter.com/onnomarsman) + // input by: James (http://www.james-bell.co.uk/) + // example 1: capwords('kevin van zonneveld') + // returns 1: 'Kevin Van Zonneveld' + // example 2: capwords('HELLO WORLD') + // returns 2: 'HELLO WORLD' + + var pattern = /^([a-z\u00E0-\u00FC])|\s+([a-z\u00E0-\u00FC])/g; + return (str + '').replace(pattern, function ($1) { + return $1.toUpperCase(); + }); +}; +//# sourceMappingURL=capwords.js.map
\ No newline at end of file |