Skip to content

camel

Formats the given string in camel case fashion.

Usage

camel("hello world"); // => 'helloWorld'
camel("va va-VOOM"); // => 'vaVaVoom'
camel("helloworld"); // => 'helloWorld'

Installation

Terminal window
npx atmx add helper camel