Linux bear.hostingplus.cl 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
LiteSpeed
Server IP : 192.140.57.17 & Your IP : 216.73.216.41
Domains :
Cant Read [ /etc/named.conf ]
User : explo
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
bitninja-dispatcher /
node_modules /
camelcase /
Delete
Unzip
Name
Size
Permission
Date
Action
index.d.ts
1.25
KB
-rw-r--r--
2026-02-18 13:02
index.js
2.05
KB
-rw-r--r--
2026-02-18 13:02
license
1.08
KB
-rw-r--r--
2026-02-18 13:02
package.json
1.77
KB
-rw-r--r--
2026-02-18 13:02
readme.md
2.16
KB
-rw-r--r--
2026-02-18 13:02
Save
Rename
declare namespace camelcase { interface Options { /** Uppercase the first character: `foo-bar` → `FooBar`. @default false */ readonly pascalCase?: boolean; } } declare const camelcase: { /** Convert a dash/dot/underscore/space separated string to camelCase or PascalCase: `foo-bar` → `fooBar`. @param input - String to convert to camel case. @example ``` import camelCase = require('camelcase'); camelCase('foo-bar'); //=> 'fooBar' camelCase('foo_bar'); //=> 'fooBar' camelCase('Foo-Bar'); //=> 'fooBar' camelCase('Foo-Bar', {pascalCase: true}); //=> 'FooBar' camelCase('--foo.bar', {pascalCase: false}); //=> 'fooBar' camelCase('foo bar'); //=> 'fooBar' console.log(process.argv[3]); //=> '--foo-bar' camelCase(process.argv[3]); //=> 'fooBar' camelCase(['foo', 'bar']); //=> 'fooBar' camelCase(['__foo__', '--bar'], {pascalCase: true}); //=> 'FooBar' ``` */ (input: string | ReadonlyArray<string>, options?: camelcase.Options): string; // TODO: Remove this for the next major release, refactor the whole definition to: // declare function camelcase( // input: string | ReadonlyArray<string>, // options?: camelcase.Options // ): string; // export = camelcase; default: typeof camelcase; }; export = camelcase;