HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux wordpress-ubuntu-s-2vcpu-4gb-fra1-01 5.4.0-169-generic #187-Ubuntu SMP Thu Nov 23 14:52:28 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/tana/frontend/node_modules/locutus/php/strings/ucwords.js.map
{"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"]}