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

5 lines
No EOL
165 B
JavaScript

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