diff options
author | Marvin Borner | 2018-11-07 22:10:16 +0100 |
---|---|---|
committer | Marvin Borner | 2018-11-07 22:10:17 +0100 |
commit | 954583f3d56fbfb60321725f13ad092e536e3737 (patch) | |
tree | a0505a763797582c61fd8c2f90b422456d8874c9 /node_modules/locutus/python/string/capwords.js | |
parent | 1c355e6e956a4e507ed5436d0c814ba9c3a1deb2 (diff) |
Removed node_modules
Diffstat (limited to 'node_modules/locutus/python/string/capwords.js')
-rw-r--r-- | node_modules/locutus/python/string/capwords.js | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/node_modules/locutus/python/string/capwords.js b/node_modules/locutus/python/string/capwords.js deleted file mode 100644 index ddd855a..0000000 --- a/node_modules/locutus/python/string/capwords.js +++ /dev/null @@ -1,21 +0,0 @@ -'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 |