(value: any)
| 90 | * data (i.e. a valid [[DataHexString]] or a Uint8Array). |
| 91 | */ |
| 92 | export function isBytesLike(value: any): value is BytesLike { |
| 93 | return (isHexString(value, true) || (value instanceof Uint8Array)); |
| 94 | } |
| 95 | |
| 96 | const HexCharacters: string = "0123456789abcdef"; |
| 97 |
nothing calls this directly
no test coverage detected