gree_leran/node_modules/dayjs/esm/plugin/isSameOrBefore/index.js

5 lines
165 B
JavaScript
Raw Normal View History

2024-06-14 01:11:29 +00:00
export default (function (o, c) {
c.prototype.isSameOrBefore = function (that, units) {
return this.isSame(that, units) || this.isBefore(that, units);
};
});