mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
12 lines
194 B
TypeScript
12 lines
194 B
TypeScript
import * as Tokenizer from "wink-tokenizer";
|
|
|
|
const tokenizer = new Tokenizer();
|
|
|
|
tokenizer.defineConfig({
|
|
currency: false
|
|
});
|
|
|
|
tokenizer.tokenize("asd asd asd ads");
|
|
|
|
tokenizer.getTokensFP();
|