6 ms·
it's very unlikely this is going to be the bottleneck in your application
by djfm 9y ago
it's very unlikely this is going to be the bottleneck in your application
- mintplant 9y agoI wouldn't be so quick to write that off as a performance concern. Creating tons of unnecessary objects is JavaScript's equivalent to programming without regard for cache locality at a lower level, due to the way the JITs work.
- Touche 9y agoIt's very unlikely you'll get any benefit from doing it the inefficient way either. Does eslint not support "ignore this part" comments?
- Prefinem 9y agoYes it does // eslint-disable-line your-rule-to-ignore