8 lines
224 B
JavaScript
Raw Normal View History

2023-06-19 09:02:35 +08:00
module.exports = function (methodName, numArgs) {
return numArgs == 1 ? function (object, arg) {
return object[methodName](arg);
} : function (object, arg1, arg2) {
return object[methodName](arg1, arg2);
};
};