Files
stale/src/functions/should-mark-when-stale.ts
T

6 lines
119 B
TypeScript
Raw Normal View History

export function shouldMarkWhenStale(
daysBeforeStale: Readonly<number>
): boolean {
return daysBeforeStale >= 0;
}