UNPKG
@fairdatasociety/fdp-cli
Version:
latest (0.1.0)
0.1.0
CLI tool for FDP-Storage
github.com/fairdatasociety/fdp-cli
fairdatasociety/fdp-cli
@fairdatasociety/fdp-cli
/
src
/
utils
/
types
/
index.ts
9 lines
(8 loc)
•
218 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
/** * Asserts whether a valid bytes have been passed */
export
function
assertBytes
(
bytes: unknown
): asserts bytes is
Uint8Array
{
if
(!(bytes
instanceof
Uint8Array
)) {
throw
new
Error
(
'Incorrect bytes'
) } }