camelCase

Type:Function
Status:stable
Since:1.0.0
Platform:jsnode
@blackbyte.sugar.shared.string

Capital case a string

Params

  1. text*-String

    The string to camelCase

Return

  1. -String

    The camelCased string

Example

import { camelize } from '@blackbyte/sugar/string';
camelize('hello world'); // => helloWorld

Todo

  • testsnormal