mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-20 06:50:47 -07:00
refactor: Tag class support in registerTag()
This commit is contained in:
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