Indigo.prototype.substructureMatcher = function()

in indigo.js [2406:2412]


Indigo.prototype.substructureMatcher = function(target, mode) {
    this._setSessionId();
    if (mode === undefined || mode === null) {
        mode = '';
    }
    return new IndigoObject(this, this._checkResult(this._lib.indigoSubstructureMatcher(target.id, mode)), target);
};