camelcase

Convert a dash/dot/underscore/space separated string to camelCase: foo-bar → fooBar

  • 所有者: sindresorhus/camelcase
  • 平台:
  • 許可證: MIT License
  • 分類:
  • 主題:
  • 喜歡:
    0
      比較:

Github星跟蹤圖

camelcase Build Status

Convert a dash/dot/underscore/space separated string to camelCase or PascalCase: foo-barfooBar

Install

$ npm install camelcase

Usage

const 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'

API

camelCase(input, [options])

input

Type: string string[]

String to convert to camel case.

options

Type: Object

pascalCase

Type: boolean
Default: false

Uppercase the first character: foo-barFooBar

camelcase for enterprise

Available as part of the Tidelift Subscription.

The maintainers of camelcase and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use. Learn more.

  • decamelize - The inverse of this module
  • uppercamelcase - Like this module, but to PascalCase instead of camelCase
  • titleize - Capitalize every word in string
  • humanize-string - Convert a camelized/dasherized/underscored string into a humanized one

主要指標

概覽
名稱與所有者sindresorhus/camelcase
主編程語言JavaScript
編程語言JavaScript (語言數: 2)
平台
許可證MIT License
所有者活动
創建於2014-10-12 10:58:21
推送於2023-09-29 06:30:04
最后一次提交
發布數26
最新版本名稱v8.0.0 (發布於 2023-08-09 18:36:42)
第一版名稱v1.0.0 (發布於 2014-10-12 13:06:14)
用户参与
星數694
關注者數13
派生數98
提交數100
已啟用問題?
問題數51
打開的問題數1
拉請求數30
打開的拉請求數2
關閉的拉請求數32
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?