Skip to main content
The Deno 2 Release Candidate is here
Learn more
Latest
interface UnicodeRange
import { type UnicodeRange } from "https://deno.land/x/frugal@0.9.6/dep/lightningcss.ts";

A contiguous range of Unicode code points.

Cannot be empty. Can represent a single code point when start == end.

Properties

end: number

Inclusive end of the range. In [0, 0x10FFFF].

start: number

Inclusive start of the range. In [0, end].