liquidjs
Version:
A simple, expressive, extensible Liquid template engine for JavaScript — Shopify, Jekyll and GitHub Pages compatible, for Node.js, browsers, and the CLI, with TypeScript support.
11 lines (10 loc) • 379 B
TypeScript
export declare const TYPES: number[];
export declare const WORD = 1;
export declare const OPERATOR = 2;
export declare const BLANK = 4;
export declare const QUOTE = 8;
export declare const INLINE_BLANK = 16;
export declare const NUMBER = 32;
export declare const SIGN = 64;
export declare const PUNCTUATION = 128;
export declare function isWord(char: string): boolean;