forked from mirrors/thatmattlove-hyperglass
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;
|
|
}
|