This commit is contained in:
2025-09-24 20:35:15 +08:00
parent 39679f7330
commit 8a458ff0a4
12033 changed files with 1537546 additions and 13292 deletions

View File

@@ -0,0 +1,10 @@
import { PluginFunc } from 'dayjs/esm'
declare const plugin: PluginFunc
export = plugin
declare module 'dayjs/esm' {
interface Dayjs {
isYesterday(): boolean
}
}

View File

@@ -0,0 +1,9 @@
export default (function (o, c, d) {
var proto = c.prototype;
proto.isYesterday = function () {
var comparisonTemplate = 'YYYY-MM-DD';
var yesterday = d().subtract(1, 'day');
return this.format(comparisonTemplate) === yesterday.format(comparisonTemplate);
};
});