1
0
Fork 0
mirror of synced 2024-07-07 07:15:43 +12:00
budibase/packages/datastores/tests/helpers.js
2020-02-03 09:24:25 +00:00

14 lines
308 B
JavaScript

import { map } from "lodash"
export const action = (name, run, iterator = iterateActionTimes(1)) => ({
name,
run,
iterator,
})
export const iterateActionTimes = times => run =>
map([...Array(times).keys()], run)
export const iterateCollection = getCollection => run =>
map(getCollection(), run)