mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-18 14:00:39 -07:00
refactor: Tag class support in registerTag()
This commit is contained in:
Vendored
+2
@@ -0,0 +1,2 @@
|
||||
export * from './cache'
|
||||
export * from './lru'
|
||||
Vendored
+1
-1
@@ -10,7 +10,7 @@ class Node<T> {
|
||||
}
|
||||
|
||||
export class LRU<T> implements Cache<T> {
|
||||
private cache: { [key: string]: Node<T> } = {}
|
||||
private cache: Record<string, Node<T>> = {}
|
||||
private head: Node<T>
|
||||
private tail: Node<T>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user