1
0
Fork 0
mirror of synced 2024-08-23 14:01:34 +12:00
budibase/packages/builder/src/components/common/core.js

4 lines
88 B
JavaScript
Raw Normal View History

2020-05-07 07:49:21 +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)