purchase-let/node_modules/dayjs/esm/plugin/isSameOrBefore/index.js

5 lines
165 B
JavaScript
Raw Normal View History

2024-04-25 18:02:30 +08:00
export default (function (o, c) {
c.prototype.isSameOrBefore = function (that, units) {
return this.isSame(that, units) || this.isBefore(that, units);
};
});