Skip to content

Commit b54da32

Browse files
chore: removed meaningless AI yap from readme
1 parent 0f8927c commit b54da32

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Typed JavaScript and TypeScript byte utilities for base58, base58btc, base64, ba
1717

1818
## Goals
1919

20-
- Developer-friendly API for base58, base58btc, base64, base64url, hex, Z85, UTF-8, unsigned BigInt conversion, JSON, gzip, concat, equality, and byte normalization.
20+
- Developer-friendly API.
2121
- No runtime dependencies or bundler shims.
2222
- Tree-shakeable ESM by default with CommonJS compatibility and no side effects.
2323
- Returns copies for safety when normalizing inputs.
@@ -73,7 +73,10 @@ const decoded = fromBase58String(encoded) // Uint8Array
7373
### Base58btc
7474

7575
```js
76-
import { toBase58BtcString, fromBase58BtcString } from '@sovereignbase/bytecodec'
76+
import {
77+
toBase58BtcString,
78+
fromBase58BtcString,
79+
} from '@sovereignbase/bytecodec'
7780

7881
const bytes = new Uint8Array([104, 101, 108, 108, 111])
7982
const encoded = toBase58BtcString(bytes) // "zCn8eVZg"

0 commit comments

Comments
 (0)