79626926

Date: 2025-05-17 19:40:03
Score: 1.5
Natty:
Report link

avoid subtree unless you truly need and try monitoring addedNodes not the whole DOM. ex:

for (const mutation of mutations) {
 for (const node of mutation.addedNodes) {
   ...
 }
}
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Lirim Krosa