mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-06 04:18:24 -04:00
9 lines
239 B
JavaScript
9 lines
239 B
JavaScript
'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);
|
|
};
|
|
};
|