Skip to content

Commit 269a3f4

Browse files
committed
chore: added default import export
1 parent 6b7b715 commit 269a3f4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Cache/LRUCache.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,4 +143,4 @@ class LRUCache {
143143
}
144144
}
145145

146-
export { LRUCache }
146+
export default LRUCache

Cache/test/LRUCache.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { LRUCache } from '../LRUCache'
1+
import LRUCache from '../LRUCache'
22
import { fibonacciCache } from './cacheTest'
33

44
describe('Testing LRUCache', () => {

0 commit comments

Comments
 (0)