UNPKG

tex2typst

Version:

JavaScript library for converting TeX code to Typst

15 lines (11 loc) 364 B
export function isalpha(char: string): boolean { return 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'.includes(char); } export function isdigit(char: string): boolean { return '0123456789'.includes(char); } export function assert(condition: boolean, message: string = ''): void { if (!condition) { throw new Error(message); } }