UNPKG

extract-alphanumeric

Version:

simple tool to extract alphanumeric characters from a string

7 lines (6 loc) 176 B
type Options = { include?: string; exclude?: string; }; declare const extract: (input: string, { include, exclude, }?: Options) => string; export { extract, Options };