(value)
| 67 | * data (i.e. a valid [[DataHexString]] or a Uint8Array). |
| 68 | */ |
| 69 | export function isBytesLike(value) { |
| 70 | return (isHexString(value, true) || (value instanceof Uint8Array)); |
| 71 | } |
| 72 | const HexCharacters = "0123456789abcdef"; |
| 73 | /** |
| 74 | * Returns a [[DataHexString]] representation of %%data%%. |
no test coverage detected