Function strSplitCamelCase

  • Returns an array of words in the string

    Parameters

    • word: string

      The camel case word to split.

    Returns string[]

    Throws

    Throws an error if the input is not a string.

    Example

    strSplitCamelCase('someCamel10Case')
    //=> ['some', 'Camel10', 'Case']

Generated using TypeDoc