NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/dayjs/esm/plugin/isSameOrBefore/index.js
2023-09-14 14:47:11 +08:00

5 lines
165 B
Java

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