packages/create-youtrack-app/_templates/injectJsCallback.js (11 lines of code) (raw):
module.exports = {
injectJSCallback(callback, factory) {
return (...args) =>
factory(...args).then((result) => {
if (callback) {
return callback(result);
}
return result;
});
},
};