summaryrefslogtreecommitdiff
path: root/test/fixtures/repl-load-multiline.js
blob: faedf4ee07d10647e72447e326803cb5e866dc98 (plain)
1
2
3
4
5
6
const getLunch = () =>
  placeOrder('tacos')
    .then(eat);

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