recipe-backend/node_modules/dayjs/esm/plugin/isSameOrBefore/index.js
2025-09-21 12:39:54 +02: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);
};
});