Skip to main content
Module

x/froebel/range.ts>alphaRange

A strictly typed utility library.
Go to Latest
function alphaRange
import { alphaRange } from "https://deno.land/x/froebel@v0.21.3/range.ts";

Constructs a range between characters.

Examples

Example 1

range('a', 'd')  // -> ['a', 'b', 'c', 'd']
range('Z', 'W')  // -> ['Z', 'Y', 'X', 'W']

Parameters

start: string
end: string