hawkfish / olapscript

An OLAP engine for Google App Script
MIT License
3 stars 1 forks source link

Fix Date comparisons #99

Closed hawkfish closed 2 years ago

hawkfish commented 2 years ago

In another bit of JavaScript ugliness, it appears that == and != do not work as expected for Date objects. In fact, they don't work for ANY Objects! To fix this, we have to check for the valueOf method and use instead.