repo.or.cz
/
ProtonMail-WebClient.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cleanup - unused files / unused exports / duplicate exports
[ProtonMail-WebClient.git]
/
packages
/
utils
/
isArrayOfUint8Array.ts
blob
d3cfbfbbdea9e9d66e45cd01fe2a63a062d1b7d5
1
export default function isArrayOfUint8Array(arr: any[]): arr is Uint8Array[] {
2
return arr.every((el) => el instanceof Uint8Array);
3
}