function checkAndExecuteFn()

in src/frontend/src/common/CommonFunctions.ts [84:88]


function checkAndExecuteFn(fn: (...args: any[]) => any, ...args: any[]): any {
  if (fn && typeof fn === "function") {
    return fn(...args);
  }
}