el.xwx.moe/lib/shared/getArchiveValidity.ts

27 lines
545 B
TypeScript
Raw Normal View History

2023-12-13 05:59:36 -06:00
export function screenshotAvailable(link: any) {
return (
link &&
link.screenshotPath &&
link.screenshotPath !== "pending" &&
link.screenshotPath !== "unavailable"
2023-12-13 05:59:36 -06:00
);
}
export function pdfAvailable(link: any) {
return (
link &&
link.pdfPath &&
link.pdfPath !== "pending" &&
link.pdfPath !== "unavailable"
2023-12-13 05:59:36 -06:00
);
}
export function readabilityAvailable(link: any) {
return (
link &&
link.readabilityPath &&
link.readabilityPath !== "pending" &&
link.readabilityPath !== "unavailable"
2023-12-13 05:59:36 -06:00
);
}