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/php/strings/ucwords.js.map | |
parent | 1c355e6e956a4e507ed5436d0c814ba9c3a1deb2 (diff) |
Removed node_modules
Diffstat (limited to 'node_modules/locutus/php/strings/ucwords.js.map')
-rw-r--r-- | node_modules/locutus/php/strings/ucwords.js.map | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/node_modules/locutus/php/strings/ucwords.js.map b/node_modules/locutus/php/strings/ucwords.js.map deleted file mode 100644 index 0e34ff0..0000000 --- a/node_modules/locutus/php/strings/ucwords.js.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["../../../src/php/strings/ucwords.js"],"names":["module","exports","ucwords","str","replace","$1","toUpperCase"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,OAAT,CAAkBC,GAAlB,EAAuB;AACtC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,SAAO,CAACA,MAAM,EAAP,EACJC,OADI,CACI,cADJ,EACoB,UAAUC,EAAV,EAAc;AACrC,WAAOA,GAAGC,WAAH,EAAP;AACD,GAHI,CAAP;AAID,CAtBD","file":"ucwords.js","sourcesContent":["module.exports = function ucwords (str) {\n // discuss at: http://locutus.io/php/ucwords/\n // original by: Jonas Raoni Soares Silva (http://www.jsfromhell.com)\n // improved by: Waldo Malqui Silva (http://waldo.malqui.info)\n // improved by: Robin\n // improved by: Kevin van Zonneveld (http://kvz.io)\n // bugfixed by: Onno Marsman (https://twitter.com/onnomarsman)\n // bugfixed by: Cetvertacov Alexandr (https://github.com/cetver)\n // input by: James (http://www.james-bell.co.uk/)\n // example 1: ucwords('kevin van zonneveld')\n // returns 1: 'Kevin Van Zonneveld'\n // example 2: ucwords('HELLO WORLD')\n // returns 2: 'HELLO WORLD'\n // example 3: ucwords('у мэри был маленький ягненок и она его очень любила')\n // returns 3: 'У Мэри Был Маленький Ягненок И Она Его Очень Любила'\n // example 4: ucwords('τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός')\n // returns 4: 'Τάχιστη Αλώπηξ Βαφής Ψημένη Γη, Δρασκελίζει Υπέρ Νωθρού Κυνός'\n\n return (str + '')\n .replace(/^(.)|\\s+(.)/g, function ($1) {\n return $1.toUpperCase()\n })\n}\n"]}
\ No newline at end of file |