You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in ProcesingChain.prototype.runChain the param with name handler is not used as function or object. The main meaning is to provide a name for filtering and search.
Maybe to replace it with the param named handlerName.
From the content of next function it result that there can be the situation when handlerName(or handler ) is undefined. This result from the snippet
if(handler) {
var firstItem = self.findFirstValidItem(handler.name)
....
}
In this case, for handlerName=undefined (or handler=undefined) the snippet
in ProcesingChain.prototype.runChain the param with name
handler
is not used as function or object. The main meaning is to provide a name for filtering and search.Maybe to replace it with the param named handlerName.
From the content of next function it result that there can be the situation when handlerName(or handler ) is undefined. This result from the snippet
In this case, for handlerName=undefined (or handler=undefined) the snippet
will be of nonsense.
In this case the function runChaid will become
The text was updated successfully, but these errors were encountered: