mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-02-01 12:33:07 +00:00
4 lines
103 B
TypeScript
4 lines
103 B
TypeScript
|
|
export function hexToBuf(str: string): Buffer {
|
||
|
|
return Buffer.from(str.replace(/0x/i, ''), 'hex');
|
||
|
|
}
|