summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/strings/ucwords.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/locutus/php/strings/ucwords.js')
-rw-r--r--node_modules/locutus/php/strings/ucwords.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/node_modules/locutus/php/strings/ucwords.js b/node_modules/locutus/php/strings/ucwords.js
new file mode 100644
index 0000000..7d76e15
--- /dev/null
+++ b/node_modules/locutus/php/strings/ucwords.js
@@ -0,0 +1,25 @@
+'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