jccp_a/vuepress/node_modules/dayjs/esm/plugin/isToday/index.js
hellcat ac91e1fbe4 1
2025-11-12 17:57:30 +08:00

9 lines
246 B
JavaScript

export default (function (o, c, d) {
var proto = c.prototype;
proto.isToday = function () {
var comparisonTemplate = 'YYYY-MM-DD';
var now = d();
return this.format(comparisonTemplate) === now.format(comparisonTemplate);
};
});