You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sadly words-to-numbers uses "clj-fuzzy" a module that attaches a new function, called "s" to the Date prototype
this explains some of the other issues here, and it makes this module unusable, it breaks modules like 'later' and any other module that attaches a property called "s" on a Date (also a bad idea, but that doesn't interfere with anyone else)
the offending code in clj-fuzzy
Date.prototype.s = function (a, b) { return b instanceof Date && this.valueOf() === b.valueOf() }
The text was updated successfully, but these errors were encountered:
sadly words-to-numbers uses "clj-fuzzy" a module that attaches a new function, called "s" to the Date prototype
this explains some of the other issues here, and it makes this module unusable, it breaks modules like 'later' and any other module that attaches a property called "s" on a Date (also a bad idea, but that doesn't interfere with anyone else)
the offending code in clj-fuzzy
Date.prototype.s = function (a, b) { return b instanceof Date && this.valueOf() === b.valueOf() }
The text was updated successfully, but these errors were encountered: