b5f3067a6a
Initial setup of project dependencies including axios, express, dotenv, and other supporting packages. Added configuration files and documentation for project setup and usage.
17 lines
372 B
JavaScript
17 lines
372 B
JavaScript
import utils from "../utils.js";
|
|
|
|
const callbackify = (fn, reducer) => {
|
|
return utils.isAsyncFn(fn) ? function (...args) {
|
|
const cb = args.pop();
|
|
fn.apply(this, args).then((value) => {
|
|
try {
|
|
reducer ? cb(null, ...reducer(value)) : cb(null, value);
|
|
} catch (err) {
|
|
cb(err);
|
|
}
|
|
}, cb);
|
|
} : fn;
|
|
}
|
|
|
|
export default callbackify;
|