0.0.22 • Published 5 years ago

@plexis/to-camel-case v0.0.22

Weekly downloads
8
License
MIT
Repository
github
Last release
5 years ago

@plexis/toCamelCase

Converts the input text to camelCase.

Installation npm i @plexis/to-camel-case

Usage

import toCamelCase from '@plexis/to-camel-case';

toCamelCase('Cool'); //=> 'cool'
toCamelCase('cool mate'); // => 'coolMate'
toCamelCase('Hey how are you today?'); // => 'heyHowAreYouToday'
toCamelCase('PascalCase'); // => 'pascalCase'
toCamelCase('kebab-case'); // => kebabCase

Aliases

import {toCamelCase} from 'plexis';
import {camelCase} from 'plexis';
import {camelize} from 'plexis';
0.0.22

5 years ago

0.0.21

5 years ago

0.0.20

5 years ago

0.0.19

5 years ago

0.0.18

5 years ago

0.0.17

5 years ago

0.0.16

5 years ago