package.internals.caller.js Maven / Gradle / Ivy
'use strict';
module.exports = function (methodName, numArgs) {
return numArgs === 1 ? function (object, arg) {
return object[methodName](arg);
} : function (object, arg1, arg2) {
return object[methodName](arg1, arg2);
};
};
© 2015 - 2024 Weber Informatics LLC | Privacy Policy