()
| 15 | const DEFAULT_MAX_BYTES = 16 * 1024 * 1024; |
| 16 | |
| 17 | function isCacheEnabled() { |
| 18 | const raw = String(process.env.RESPONSE_CACHE_ENABLED ?? process.env.WINDSURFAPI_RESPONSE_CACHE ?? '1') |
| 19 | .trim() |
| 20 | .toLowerCase(); |
| 21 | return !['0', 'false', 'off', 'no'].includes(raw); |
| 22 | } |
| 23 | |
| 24 | // Map preserves insertion order → we evict the oldest when over capacity. |
| 25 | const _store = new Map(); |
no outgoing calls
no test coverage detected