UNPKG

tripledoc

Version:

Library to read, create and update documents on a Solid Pod

18 lines (13 loc) 415 B
'use strict'; // TODO: Use rest/spread when targeting Node.js 6 module.exports = function (input) { const args = Array.isArray(input) ? input : arguments; if (args.length === 0) { return Promise.reject(new Error('Expected at least one argument')); } return [].slice.call(args, 1).reduce((a, b) => { return function () { return Promise.resolve(a.apply(null, arguments)).then(b); }; }, args[0]); };