woff2-decode 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +0 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -19,8 +19,6 @@ const ttfData = decode(woff2Data)
19
19
  // ttfData is a Uint8Array containing the decoded TTF/OTF
20
20
  ```
21
21
 
22
- The decoder handles both single fonts and TrueType Collections (TTC). For collections, the output is a valid TTC file
23
-
24
22
  ## Performance
25
23
 
26
24
  Benchmarks on an M1 Mac, Node 20. In Node, comparing native Brotli (via zlib)to pure JS used in browsers
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "woff2-decode",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Pure TypeScript WOFF2 decoder",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.js",