prettier/tests/functional_composition/lodash_flow.js

20 lines
209 B
JavaScript

import { flow } from "lodash";
const foo = flow(
x => x + 1,
x => x * 3,
x => x - 6,
);
foo(6);
import * as _ from "lodash";
const bar = _.flow(
x => x + 1,
x => x * 3,
x => x - 6,
);
bar(6);