extract-zhongwen
Version:
Utility for extracting chinese characters from a string
9 lines (8 loc) • 316 B
TypeScript
type Options = {
normalizeUnicode?: boolean;
removeDuplicates?: boolean;
includeCharacters?: string;
excludeCharacters?: string;
};
declare const extract: (input: string, { normalizeUnicode, removeDuplicates, includeCharacters, excludeCharacters, }?: Options) => string;
export { Options, extract };