Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/camelcase/index.d.ts
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

63 lines (48 sloc)
1.25 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |