mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-06-11 18:32:28 +03:00
create puppeteer setup
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user