Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Namespaces

Interfaces

Functions

Functions

  • export=(input: string | readonly string[], options?: export=.Options): string
  • Convert a dash/dot/underscore/space separated string to camelCase or PascalCase: foo-barfooBar.

    Correctly handles Unicode strings.

    example
    import camelCase = require('camelcase');

    camelCase('foo-bar');
    //=> 'fooBar'

    camelCase('foo_bar');
    //=> 'fooBar'

    camelCase('Foo-Bar');
    //=> 'fooBar'

    camelCase('розовый_пушистый_единороги');
    //=> 'розовыйПушистыйЕдинороги'

    camelCase('Foo-Bar', {pascalCase: true});
    //=> 'FooBar'

    camelCase('--foo.bar', {pascalCase: false});
    //=> 'fooBar'

    camelCase('Foo-BAR', {preserveConsecutiveUppercase: true});
    //=> 'fooBAR'

    camelCase('fooBAR', {pascalCase: true, preserveConsecutiveUppercase: true}));
    //=> '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'

    camelCase(['foo', 'BAR'], {pascalCase: true, preserveConsecutiveUppercase: true})
    //=> 'FooBAR'

    camelCase('lorem-ipsum', {locale: 'en-US'});
    //=> 'loremIpsum'

    Parameters

    • input: string | readonly string[]

      String to convert to camel case.

    • Optional options: export=.Options

    Returns string

Generated using TypeDoc