MCPcopy Create free account
hub / github.com/microsoft/SandDance / compareExpression

Function compareExpression

docs/app/js/sanddance-app.js:6114–6121  ·  view source on GitHub ↗
(a, b)

Source from the content-addressed store, hash-verified

6112 value: null
6113});
6114function compareExpression(a, b) {
6115 if (a && b) for(let k = 0; k < expressionKeys.length; k++){
6116 let key = expressionKeys[k];
6117 if (a[key] != b[key]) return false;
6118 }
6119 else return !a && !b;
6120 return true;
6121}
6122const groupKeys = Object.keys({
6123 clause: null
6124});

Callers 1

compareGroupFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected