UNPKG

@serserm/react-native-turbo-serialport

Version:

React Native - Usb Serial Port Communication For Android Platform

11 lines 299 B
export const hexToUtf16 = hex => { let str = ''; const radix = 16; if (hex) { for (let i = 0; i < hex.length && hex.substring(i, 2) !== '00'; i += 2) { str += String.fromCharCode(parseInt(hex.substring(i, 2), radix)); } } return str; }; //# sourceMappingURL=hexToUtf16.js.map