remove unused foreach util

pull/7420/head
Niklas Fiekas 2020-10-04 16:35:14 +02:00
parent 181a755e82
commit 94c710a22a
1 changed files with 0 additions and 4 deletions

View File

@ -8,10 +8,6 @@ export const isEmpty = (a: any): boolean => !a || a.length === 0;
export const notEmpty = (a: any): boolean => !isEmpty(a);
/* export const foreach = <A>(a: A | undefined, f: (a: A) => void): void => { */
/* if (a) f(a); */
/* } */
export interface Prop<T> {
(): T
(v: T): T