Simon Priet 9e2991e668 init
2021-09-05 22:53:58 +02:00

5 lines
165 B
JavaScript

export default (function (o, c) {
c.prototype.isSameOrBefore = function (that, units) {
return this.isSame(that, units) || this.isBefore(that, units);
};
});