kuitos / axios-extensions

🍱 axios extensions lib, including throttle, cache, retry features etc...
MIT License
831 stars 49 forks source link

Migrate LRUCache to v9.x.x #100

Open cb-eli opened 1 year ago

cb-eli commented 1 year ago

https://github.com/isaacs/node-lru-cache/blob/main/CHANGELOG.md

Breaking Change: Should use named import instead of default import

Change this:

import LRUCache from 'lru-cache'

To this:

import { LRUCache } from 'lru-cache'