Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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 /
quiz1 /
node_modules /
camelize /
test /
[ HOME SHELL ]
Name
Size
Permission
Action
camel.js
857
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : camel.js
'use strict'; var test = require('tape'); var camelize = require('../'); var obj = { fee_fie_foe: 'fum', beep_boop: [ { 'abc.xyz': 'mno' }, { 'foo-bar': 'baz' } ] }; test('camelize a nested object', function (t) { t.plan(1); var res = camelize(obj); t.deepEqual(res, { feeFieFoe: 'fum', beepBoop: [ { abcXyz: 'mno' }, { fooBar: 'baz' } ] }); }); test('string', function (t) { t.plan(1); t.equal(camelize('one_two'), 'oneTwo'); }); test('date', function (t) { t.plan(1); var d = new Date(); t.equal(camelize(d), d); }); test('regex', function (t) { t.plan(1); var r = /1234/; t.equal(camelize(r), r); }); test('only camelize strings that are the root value', function (t) { t.plan(2); t.equal(camelize('foo-bar'), 'fooBar'); var res = camelize({ 'foo-bar': 'baz-foo' }); t.deepEqual(res, { fooBar: 'baz-foo' }); });
Close