(value: BytesLike, name?: string)
| 52 | * @see: getBytesCopy |
| 53 | */ |
| 54 | export function getBytes(value: BytesLike, name?: string): Uint8Array { |
| 55 | return _getBytes(value, name, false); |
| 56 | } |
| 57 | |
| 58 | /** |
| 59 | * Get a typed Uint8Array for %%value%%, creating a copy if necessary |
no test coverage detected