"use strict"; module.exports = ($a) => ($b) => { // First evaluate the first argument... $a(); // ... then evaluate and return the second argument. return $b(); };