Function rangeAlpha

  • Generate an Array of Unicode Characters from Start to Finish

    example:

    const aThroughZ = rangeAlpha("a", "Z");
    

    Unicode Range

    ...0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ...

    Returns

    an Array of Unicode Characters

    Parameters

    • start: string = "0"

      The Starting Unicode Character

    • stop: string = "Z"

      The End Unicode Character

    • step: number = 1

      Number to Skip between each Value

    Returns string[]

Generated using TypeDoc