We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c57f1b commit 1365bd7Copy full SHA for 1365bd7
README.md
@@ -39,7 +39,7 @@ npm install --save-dev @tokenizer/token
39
```js
40
import * as strtok3 from 'strtok3';
41
import * as token from 'token-types';
42
-
+
43
(async () => {
44
45
const tokenizer = await strtok3.fromFile("somefile.bin");
@@ -48,7 +48,7 @@ import * as token from 'token-types';
48
console.log(`My number: ${myNumber}`);
49
} finally {
50
tokenizer.close(); // Close the file
51
- }
+ }
52
})();
53
```
54
@@ -92,7 +92,7 @@ import * as token from 'token-types';
92
String types:
93
* Windows-1252
94
* ISO-8859-1
95
96
*) The tokens exceed the JavaScript IEEE 754 64-bit Floating Point precision, decoding and encoding is best effort based.
97
98
### Custom token
0 commit comments