Skip to content

uncamelize

uncamelize(string) → string · String

Convert from camelCase to separate words. Legacy naming — prefer fromCamelCase.

  • string (required): camelCase string
utlx
uncamelize("helloWorld")                 // "hello world"
uncamelize("firstName")                  // "first name"

Released under AGPL-3.0.