Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.135.246.88
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
no-case /
Delete
Unzip
Name
Size
Permission
Date
Action
vendor
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
LICENSE
1.08
KB
-rw-r--r--
2016-06-11 20:01
README.md
1.59
KB
-rw-r--r--
2017-09-08 17:16
no-case.d.ts
106
B
-rw-r--r--
2016-06-11 21:26
no-case.js
1.08
KB
-rw-r--r--
2017-01-05 03:38
package.json
1.87
KB
-rw-r--r--
2021-02-04 21:24
Save
Rename
var lowerCase = require('lower-case') var NON_WORD_REGEXP = require('./vendor/non-word-regexp') var CAMEL_CASE_REGEXP = require('./vendor/camel-case-regexp') var CAMEL_CASE_UPPER_REGEXP = require('./vendor/camel-case-upper-regexp') /** * Sentence case a string. * * @param {string} str * @param {string} locale * @param {string} replacement * @return {string} */ module.exports = function (str, locale, replacement) { if (str == null) { return '' } replacement = typeof replacement !== 'string' ? ' ' : replacement function replace (match, index, value) { if (index === 0 || index === (value.length - match.length)) { return '' } return replacement } str = String(str) // Support camel case ("camelCase" -> "camel Case"). .replace(CAMEL_CASE_REGEXP, '$1 $2') // Support odd camel case ("CAMELCase" -> "CAMEL Case"). .replace(CAMEL_CASE_UPPER_REGEXP, '$1 $2') // Remove all non-word characters and replace with a single space. .replace(NON_WORD_REGEXP, replace) // Lower case the entire string. return lowerCase(str, locale) }