mirror of
https://github.com/logos-messaging/logos-messaging-js.git
synced 2026-01-17 07:23:09 +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');
|
||
|
|
}
|