ESLint pluginRulesno-zone-critical-lodash-apisOn this pageno-zone-critical-lodash-apisDetects Zone related lodash APIs.RationaleLodash APIs that rely on Zone patched scheduling APIs might cause unnecessary change detection runs.Examples❌ Examples of incorrect code for this ruleimport { debounce, delay } from 'lodash-es';const debouncedHandleHover = debounce(handleHover, 500);for (let i = 1; i <= 5; i++) { delay(console.log, 2000 * (i + 1), i);}