11 lines
No EOL
244 B
JavaScript
Executable file
11 lines
No EOL
244 B
JavaScript
Executable file
export function getRevalidateReason(params) {
|
|
if (params.isOnDemandRevalidate) {
|
|
return 'on-demand';
|
|
}
|
|
if (params.isStaticGeneration) {
|
|
return 'stale';
|
|
}
|
|
return undefined;
|
|
}
|
|
|
|
//# sourceMappingURL=utils.js.map
|