Files
Kmake/test/fixtures/repl-load-multiline.js
2026-05-26 23:36:42 -07:00

7 lines
155 B
JavaScript

const getLunch = () =>
placeOrder('tacos')
.then(eat);
const placeOrder = (order) => Promise.resolve(order);
const eat = (food) => '<nom nom nom>';