prettier/tests/functional_composition/lodash_flow_right.js

20 lines
224 B
JavaScript

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