• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// The lack of a newline at the end of this file is intentional.
2const getLunch = () =>
3  placeOrder('tacos')
4    .then(eat);
5
6const placeOrder = (order) => Promise.resolve(order);
7const eat = (food) => '<nom nom nom>';