cutting-room-floor / wax

DEPRECATED: consult mapbox.js
https://github.com/mapbox/mapbox.js
BSD 3-Clause "New" or "Revised" License
167 stars 42 forks source link

hasOwnProperty in _grid function in wax.mm.interaction #273

Closed svanderbleek closed 11 years ago

svanderbleek commented 11 years ago

when using for in with libraries that modify Object.prototype this causes erroneous keys to be attempted, note that there are other places in the code with similar for in statements that may produce errors as well

tmcw commented 11 years ago

Thanks! Luckily such libraries are becoming less common, and those that do that kind of evil stuff use defineProperty and to make the new props non-enumerable. But always good to be careful.