UNPKG

amrhextotext

Version:
5 lines (4 loc) 172 B
'use strict' const convert = (from, to) => str => Buffer.from(str, from).toString(to) exports.textToHex = convert('utf8', 'hex') exports.hexToUtf8 = convert('hex', 'utf8')