Utility functions¶
Hexadecimal conversions¶
Some utility functions are provided to perform conversions between data representations.
- static SCWS.toHexString(buffer)¶
Utility function that converts an
ArrayBufferor aUint8Arrayto a hexadecimal string.- Arguments:
buffer – The
ArrayBufferorUint8Arrayinput value.
- Returns:
The hexadecimal string.
- static SCWS.fromHexString(hex)¶
Utility function that converts a hexadecimal string to an
ArrayBuffer.- Arguments:
hex – The hexadecimal string input.
- Returns:
The
ArrayBuffervalue.