I want this:
const fn = () => papa
.child1()
.child2();
to look like this:
const fn = () =>
papa
.child1()
.child2();
I want this:
const fn = () => papa
.child1()
.child2();
to look like this:
const fn = () =>
papa
.child1()
.child2();