create puppeteer setup

This commit is contained in:
Rene
2020-09-05 00:24:22 +02:00
parent a94c9e46ca
commit e11e36531f
42 changed files with 1289 additions and 97 deletions
@@ -1,4 +1,3 @@
import { keys } from 'support/utils/object';
import { isArrayLike } from 'support/utils/types';
import { PlainObject } from 'typings';
@@ -38,7 +37,7 @@ export function each<T>(
}
}
} else if (source) {
each(keys(source), (key) => callback(source[key], key, source));
each(Object.keys(source), (key) => callback(source[key], key, source));
}
return source;
}