MCPcopy Index your code
hub / github.com/microsoft/SandDance / equalObject

Function equalObject

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

Source from the content-addressed store, hash-verified

142936 return true;
142937}
142938function equalObject(a, b) {
142939 for(const key in a){
142940 if (!equal(a[key], b[key])) return false;
142941 }
142942 return true;
142943}
142944function removePredicate(props) {
142945 return (_)=>equalObject(props, _);
142946}

Callers 2

equalFunction · 0.70
removePredicateFunction · 0.70

Calls 1

equalFunction · 0.70

Tested by

no test coverage detected