Default to base 6 and release 2.3.0

This commit is contained in:
2026-09-16 09:33:26 -07:00
parent 4abba67988
commit adc877d743
3 changed files with 11 additions and 11 deletions

View File

@@ -25,8 +25,8 @@ const decoded = zwus.decodeToNumberArray(encoded);
Higher base = shorter output, but more likely visible in some renderers.
```js
zwus.encodeString("hi", 3) // default, safest
zwus.encodeString("hi", 6) // compact
zwus.encodeString("hi", 3) // safest
zwus.encodeString("hi", 6) // default, compact
zwus.encodeString("hi", 8) // most compact
```