• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1const getLunch = () =>
2  placeOrder('tacos')
3    .then(eat);
4
5const placeOrder = (order) => Promise.resolve(order);
6const eat = (food) => '<nom nom nom>';
7