Transforms a camelCase text into its non-camelCase value, i.e.:
import { decamelize } form '@amjs/js-utils';console.log(decamelize('helloWorld', '-')); // "hello-world" Copy
import { decamelize } form '@amjs/js-utils';console.log(decamelize('helloWorld', '-')); // "hello-world"
To transform.
Word character separator.
Non-camelCase form of value.
If {value} is not valid
Transforms a camelCase text into its non-camelCase value, i.e.: