Node-Red configuration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

caller.js 239B

12345678
  1. 'use strict';
  2. module.exports = function (methodName, numArgs) {
  3. return numArgs === 1 ? function (object, arg) {
  4. return object[methodName](arg);
  5. } : function (object, arg1, arg2) {
  6. return object[methodName](arg1, arg2);
  7. };
  8. };