1
0
Fork 1
mirror of https://github.com/thatmattlove/hyperglass.git synced 2026-02-07 17:58:24 +00:00
thatmattlove-hyperglass/hyperglass/ui/util/common.ts

8 lines
123 B
TypeScript

export function all(...iter: any[]) {
for (let i of iter) {
if (!i) {
return false;
}
}
return true;
}