From 6220a2221c0a3feafd609d12b2d7dee16dc7eca0 Mon Sep 17 00:00:00 2001 From: deyihu Date: Mon, 18 Nov 2024 21:08:30 +0800 Subject: [PATCH] updates --- src/LRUCache.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LRUCache.js b/src/LRUCache.js index 625209f..91aa65d 100644 --- a/src/LRUCache.js +++ b/src/LRUCache.js @@ -1,4 +1,4 @@ - +// copy from https://github.com/maptalks/maptalks.js/blob/master/src/core/util/LRUCache.ts const nullOnRemove = () => { }; class LRUCache {