UNPKG

cloudcmd

Version:

File manager for the web with console and editor

12 lines (8 loc) 203 B
'use strict'; const success = (f) => (data) => f(null, data); module.exports = (promise) => (...a) => { const fn = a.pop(); promise(...a) .then(success(fn)) .catch(fn); };