()
| 52 | |
| 53 | let didWarnCacheLife = false |
| 54 | function unstable_cacheLife() { |
| 55 | if (!didWarnCacheLife) { |
| 56 | didWarnCacheLife = true |
| 57 | const error = new Error( |
| 58 | '`unstable_cacheLife` was recently stabilized and should be imported as `cacheLife`. The `unstable` prefixed form will be removed in a future version of Next.js.' |
| 59 | ) |
| 60 | console.error(error) |
| 61 | } |
| 62 | return cacheExports.cacheLife.apply(this, arguments) |
| 63 | } |
| 64 | |
| 65 | let didWarnCacheTag = false |
| 66 | function unstable_cacheTag() { |
no test coverage detected