Files
Kmake/test/fixtures/repl-load-multiline.js

7 lines
155 B
JavaScript
Raw Permalink Normal View History

2026-05-26 23:36:42 -07:00
const getLunch = () =>
placeOrder('tacos')
.then(eat);
const placeOrder = (order) => Promise.resolve(order);
const eat = (food) => '<nom nom nom>';