aimpress-chatbot/node_modules/dayjs/esm/plugin/isSameOrBefore/index.js
“SamoilenkoVadym” 195299ece0 Initial commit
2025-04-27 17:05:18 +01: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);
};
});