node/test/fixtures/repl-load-multiline-no-trai...

7 lines
219 B
JavaScript

// The lack of a newline at the end of this file is intentional.
const getLunch = () =>
placeOrder('tacos')
.then(eat);
const placeOrder = (order) => Promise.resolve(order);
const eat = (food) => '<nom nom nom>';