MCPcopy Index your code
hub / github.com/cifertech/DisplayKit / bytesToHexByte

Function bytesToHexByte

app.js:2417–2419  ·  view source on GitHub ↗
(v)

Source from the content-addressed store, hash-verified

2415}
2416
2417function bytesToHexByte(v) {
2418 return "0x" + (v & 0xff).toString(16).padStart(2, "0").toUpperCase();
2419}
2420
2421function uint16ToHexWord(v) {
2422 return "0x" + (v & 0xffff).toString(16).padStart(4, "0").toUpperCase();

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected