Test/node_modules/dayjs/esm/plugin/isSameOrAfter/index.js
2026-04-09 22:54:00 +07:00

5 lines
No EOL
163 B
JavaScript

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