9 lines
239 B
JavaScript
Raw Normal View History

2024-08-24 20:48:14 +02:00
'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);
};
};