UNPKG

cloudcmd

Version:

File manager for the web with console and editor

10 lines (7 loc) 186 B
const success = (f) => (data) => f(null, data); export default (promise) => (...a) => { const fn = a.pop(); promise(...a) .then(success(fn)) .catch(fn); };