Skip to content

Commit d0ffa4f

Browse files
committed
Fix lint
1 parent 4c02665 commit d0ffa4f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/utils.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
// buf.toString('hex') -> toHex(buf)
22
import { assertBytes } from "@noble/hashes/utils";
3-
export { bytesToHex as toHex, assertBytes, createView } from "@noble/hashes/utils";
3+
export {
4+
assertBytes,
5+
bytesToHex as toHex,
6+
createView
7+
} from "@noble/hashes/utils";
48
// Buffer.from(hex, 'hex') -> hexToBytes(hex)
59
export function hexToBytes(hex: string): Uint8Array {
610
if (typeof hex !== "string") {

0 commit comments

Comments
 (0)