Skip to content

camelCase

Transform a string to camelCase.

Usage

js
import { camelCase } from '@studiometa/js-toolkit/utils';

camelCase('Some String Content'); // someStringContent

Params

  • string (string): The string to transform.

Return value

  • string: The transformed string.

MIT Licensed