MCPcopy Index your code
hub / github.com/angular/angular / isPropertiesPatched

Function isPropertiesPatched

packages/zone.js/test/browser/browser.spec.ts:443–451  ·  view source on GitHub ↗
(obj: any, properties: string[] | null, prototype?: any)

Source from the content-addressed store, hash-verified

441 }
442
443 function isPropertiesPatched(obj: any, properties: string[] | null, prototype?: any) {
444 if (properties) {
445 for (let i = 0; i < properties.length; i++) {
446 if (!isPropertyPatched(obj, 'on' + properties[i], prototype)) {
447 fail(`${properties[i]} is not patched on ${obj}`);
448 }
449 }
450 }
451 }
452
453 isPropertiesPatched(
454 window,

Callers 1

browser.spec.tsFile · 0.85

Calls 1

isPropertyPatchedFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…