node-ejs-renderer/node_modules/@jsonjoy.com/util/lib/strings/util.d.ts
2024-06-09 13:55:01 -04:00

5 lines
202 B
TypeScript

export type CharPredicate = (char: string) => boolean;
export declare const isLetter: CharPredicate;
export declare const isWhitespace: CharPredicate;
export declare const isPunctuation: CharPredicate;