{"id":18062966,"url":"https://github.com/stagas/kebab-to-camel","last_synced_at":"2025-04-05T13:12:54.343Z","repository":{"id":57288876,"uuid":"424981497","full_name":"stagas/kebab-to-camel","owner":"stagas","description":"convert kebab-case to camelCase","archived":false,"fork":false,"pushed_at":"2022-01-22T13:23:17.000Z","size":486,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-13T10:46:06.833Z","etag":null,"topics":["camel-case","camelcase","kebab-case","kebabcase","string","string-format","string-manipulation"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stagas.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-11-05T14:43:33.000Z","updated_at":"2022-01-22T13:23:18.000Z","dependencies_parsed_at":"2022-09-21T03:01:59.168Z","dependency_job_id":null,"html_url":"https://github.com/stagas/kebab-to-camel","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stagas%2Fkebab-to-camel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stagas%2Fkebab-to-camel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stagas%2Fkebab-to-camel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stagas%2Fkebab-to-camel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stagas","download_url":"https://codeload.github.com/stagas/kebab-to-camel/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247339160,"owners_count":20923014,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["camel-case","camelcase","kebab-case","kebabcase","string","string-format","string-manipulation"],"created_at":"2024-10-31T05:09:00.583Z","updated_at":"2025-04-05T13:12:54.318Z","avatar_url":"https://github.com/stagas.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003ekebab-to-camel\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\nconvert kebab-case to camelCase\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n   \u003ca href=\"#install\"\u003e        🔧 \u003cstrong\u003eInstall\u003c/strong\u003e\u003c/a\u003e\n · \u003ca href=\"#example\"\u003e        🧩 \u003cstrong\u003eExample\u003c/strong\u003e\u003c/a\u003e\n · \u003ca href=\"#bench\"\u003e          🚴 \u003cstrong\u003eBench\u003c/strong\u003e\u003c/a\u003e\n · \u003ca href=\"#api\"\u003e            📜 \u003cstrong\u003eAPI docs\u003c/strong\u003e\u003c/a\u003e\n · \u003ca href=\"https://github.com/stagas/kebab-to-camel/releases\"\u003e 🔥 \u003cstrong\u003eReleases\u003c/strong\u003e\u003c/a\u003e\n · \u003ca href=\"#contribute\"\u003e     💪🏼 \u003cstrong\u003eContribute\u003c/strong\u003e\u003c/a\u003e\n · \u003ca href=\"https://github.com/stagas/kebab-to-camel/issues\"\u003e   🖐️ \u003cstrong\u003eHelp\u003c/strong\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n***\n\n## Install\n\n```sh\n$ npm i kebab-to-camel\n```\n\n## Example\n\n```ts\nimport { kebabToCamel } from 'kebab-to-camel'\n\nconsole.log(kebabToCamel('hello-camel-world'))\n// =\u003e helloCamelWorld\n```\n\n## Bench\n\n`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:\n\n\u003cimg src=\"bench.png\"\u003e\n\n## API\n\n\u003c!-- Generated by documentation.js. Update this documentation by updating the source code. --\u003e\n\n#### Table of Contents\n\n*   [kebabToCamel](#kebabtocamel)\n    *   [Parameters](#parameters)\n\n### kebabToCamel\n\n[src/index.ts:7-18](https://github.com/stagas/kebab-to-camel/blob/f08cfc7439b855c53969980b72ab3c838433d679/src/index.ts#L7-L18 \"Source code on GitHub\")\n\nConverts a string from `kebab-case` to `camelCase`.\n\n#### Parameters\n\n*   `input` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** The string in `kebab-case` to be converted\n\nReturns **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** The string in `camelCase`\n\n## Contribute\n\n[Fork](https://github.com/stagas/kebab-to-camel/fork) or\n[edit](https://github.dev/stagas/kebab-to-camel) and submit a PR.\n\nAll contributions are welcome!\n\n## License\n\nMIT © 2021\n[stagas](https://github.com/stagas)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstagas%2Fkebab-to-camel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstagas%2Fkebab-to-camel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstagas%2Fkebab-to-camel/lists"}