animint2
animint2 copied to clipboard
animint.js Selectors does not need hasOwnProperty
there are several uses of Selectors.hasOwnProperty which seems to be un-necessary, so should be removed.
grep -nH --null Selectors.hasOwnProperty animint.js
animint.js:1570: if (Selectors.hasOwnProperty(selector_name)) {
animint.js:1866: if(Selectors.hasOwnProperty(selector_name)){
animint.js:2087: if(!Selectors.hasOwnProperty(v_name)){
animint.js:2766: if(Selectors.hasOwnProperty(selector_nam)){
animint.js:2797: }//if(Selectors.hasOwnProperty(selector_nam))
Grep finished with matches found at Tue Nov 25 09:55:05
can i work on this ?
sure, thanks
I’ve opened PR #284 with a fix for all current hasOwnProperty occurrences in the animint.js source. Since this area overlaps with the earlier pending PR, I wanted to check your preference. Would you like me to base my branch on that PR or keep this as a clean, standalone fix based on main?