mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-02-07 17:58:24 +00:00
8 lines
123 B
TypeScript
8 lines
123 B
TypeScript
export function all(...iter: any[]) {
|
|
for (let i of iter) {
|
|
if (!i) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|