5 lines
165 B
JavaScript
Raw Permalink Normal View History

2025-04-01 09:03:51 +08:00
export default (function (o, c) {
c.prototype.isSameOrBefore = function (that, units) {
return this.isSame(that, units) || this.isBefore(that, units);
};
});