1
0
Fork 0
mirror of synced 2024-07-16 11:45:47 +12:00
budibase/packages/builder/src/components/common/core.js

4 lines
87 B
JavaScript
Raw Normal View History

2020-05-07 21:53:34 +12:00
import { flow } from "lodash/fp"
2019-10-07 18:03:41 +13:00
2020-05-07 07:49:21 +12:00
export const pipe = (arg, funcs) => flow(funcs)(arg)