diff options
Diffstat (limited to 'node_modules/locutus/php/strings/ucwords.js')
-rw-r--r-- | node_modules/locutus/php/strings/ucwords.js | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/node_modules/locutus/php/strings/ucwords.js b/node_modules/locutus/php/strings/ucwords.js deleted file mode 100644 index 7d76e15..0000000 --- a/node_modules/locutus/php/strings/ucwords.js +++ /dev/null @@ -1,25 +0,0 @@ -'use strict'; - -module.exports = function ucwords(str) { - // discuss at: http://locutus.io/php/ucwords/ - // 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) - // bugfixed by: Cetvertacov Alexandr (https://github.com/cetver) - // input by: James (http://www.james-bell.co.uk/) - // example 1: ucwords('kevin van zonneveld') - // returns 1: 'Kevin Van Zonneveld' - // example 2: ucwords('HELLO WORLD') - // returns 2: 'HELLO WORLD' - // example 3: ucwords('у мэри был маленький ягненок и она его очень любила') - // returns 3: 'У Мэри Был Маленький Ягненок И Она Его Очень Любила' - // example 4: ucwords('τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός') - // returns 4: 'Τάχιστη Αλώπηξ Βαφής Ψημένη Γη, Δρασκελίζει Υπέρ Νωθρού Κυνός' - - return (str + '').replace(/^(.)|\s+(.)/g, function ($1) { - return $1.toUpperCase(); - }); -}; -//# sourceMappingURL=ucwords.js.map
\ No newline at end of file |