4 lines
103 B
TypeScript
Raw Normal View History

export function hexToBuf(str: string): Buffer {
return Buffer.from(str.replace(/0x/i, ''), 'hex');
}