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

9 lines
246 B
JavaScript
Raw Permalink Normal View History

2024-06-14 01:11:29 +00:00
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);
};
});