# @ebosetalee/camelcase

> __A Javascript NPM package/module that converts a dash/dot/underscore/space separated string to _camelCase_ or _PascalCase_.__

Latest version **1.0.3** (published 2021-05-08) · ISC license · 0 weekly downloads

## Install

```sh
npm install @ebosetalee/camelcase
pnpm add @ebosetalee/camelcase
yarn add @ebosetalee/camelcase
bun add @ebosetalee/camelcase
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.3 |
| Published | 2021-05-08 |
| First published | 2021-05-08 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 3.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 3 |
| Maintainers | ebosetalee |

## Links

- npm: https://www.npmjs.com/package/@ebosetalee/camelcase
- Repository: https://github.com/ebosetalee/camel-Case-Library
- Homepage: https://github.com/ebosetalee/camel-Case-Library#readme
- Issues: https://github.com/ebosetalee/camel-Case-Library/issues
- npm.io page: https://npm.io/package/@ebosetalee/camelcase

## Recent versions

- 1.0.3 (latest) — 2021-05-08

## README

# CAMEL CASE 
__A Javascript NPM package/module that converts a dash/dot/underscore/space separated string to _camelCase_ or _PascalCase_.__

## Ex:

```jsx
"foo-bar" becomes "fooBar"
```

Examples of how the module should be used.

```jsx
const camelCase = require("@ebosetalee/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", { uppercase: true });
//=> "fooBAR"

camelCase("fooBAR", { pascalCase: true, uppercase: true }));
//=> "FooBAR"

camelCase("foo bar");
//=> "fooBar"
```

---
_Source: https://npm.io/package/@ebosetalee/camelcase · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
