bufferbase 3.0.0 → 3.0.1

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.
package/README.md CHANGED
@@ -184,6 +184,17 @@ type CodecSpec =
184
184
  delimiters?: boolean; requireFullBlocks?: boolean };
185
185
  ```
186
186
 
187
+ ### Also exported
188
+
189
+ | Export | What it is |
190
+ |---|---|
191
+ | `Bases` | The table above, as codec specs |
192
+ | `Chars` | The alphabets, for building your own specs |
193
+ | `isBaseName(value)` | Whether a string names one of `Bases` |
194
+ | `resolveSpec(base)` | The spec behind a name |
195
+ | `getCodec(spec)` | The codec for a spec, built once per spec object |
196
+ | `RadixCodec`, `BlockCodec`, `Block85Codec` | The implementations, if you want one directly |
197
+
187
198
  ### Errors
188
199
 
189
200
  | Error | Thrown when |
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bufferbase",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "Buffer-to-BaseN encoding: RFC 4648 block encodings, Ascii85/Z85, and Base58-style radix conversion",
5
5
  "sideEffects": false,
6
6
  "type": "commonjs",
@@ -43,7 +43,6 @@
43
43
  "base64",
44
44
  "base64url",
45
45
  "ascii85",
46
- "base85",
47
46
  "z85",
48
47
  "radix"
49
48
  ],
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bufferbase",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "Buffer-to-BaseN encoding: RFC 4648 block encodings, Ascii85/Z85, and Base58-style radix conversion",
5
5
  "sideEffects": false,
6
6
  "type": "module",
@@ -43,7 +43,6 @@
43
43
  "base64",
44
44
  "base64url",
45
45
  "ascii85",
46
- "base85",
47
46
  "z85",
48
47
  "radix"
49
48
  ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bufferbase",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "Buffer-to-BaseN encoding: RFC 4648 block encodings, Ascii85/Z85, and Base58-style radix conversion",
5
5
  "sideEffects": false,
6
6
  "type": "module",
@@ -59,7 +59,6 @@
59
59
  "base64",
60
60
  "base64url",
61
61
  "ascii85",
62
- "base85",
63
62
  "z85",
64
63
  "radix"
65
64
  ],