stagas / kebab-to-camel

convert kebab-case to camelCase

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

kebab-to-camel

convert kebab-case to camelCase

🔧 Install · 🧩 Example · 🚴 Bench · 📜 API docs · 🔥 Releases · 💪🏼 Contribute · 🖐️ Help


Install

$ npm i kebab-to-camel

Example

import { kebabToCamel } from 'kebab-to-camel'

console.log(kebabToCamel('hello-camel-world'))
// => helloCamelWorld

Bench

kebab-to-camel performs best among the top downloaded packages in npm and is probably the fastest way to do it if you just want that conversion and not any-to-camel:

API

Table of Contents

kebabToCamel

src/index.ts:7-18

Converts a string from kebab-case to camelCase.

Parameters

  • input string The string in kebab-case to be converted

Returns string The string in camelCase

Contribute

Fork or edit and submit a PR.

All contributions are welcome!

License

MIT © 2021 stagas

About

convert kebab-case to camelCase


Languages

Language:JavaScript 51.4%Language:TypeScript 48.6%