summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/strings/ucwords.js
diff options
context:
space:
mode:
authorMarvin Borner2018-11-07 22:10:16 +0100
committerMarvin Borner2018-11-07 22:10:17 +0100
commit954583f3d56fbfb60321725f13ad092e536e3737 (patch)
treea0505a763797582c61fd8c2f90b422456d8874c9 /node_modules/locutus/php/strings/ucwords.js
parent1c355e6e956a4e507ed5436d0c814ba9c3a1deb2 (diff)
Removed node_modules
Diffstat (limited to 'node_modules/locutus/php/strings/ucwords.js')
-rw-r--r--node_modules/locutus/php/strings/ucwords.js25
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