remove log for check caching

This commit is contained in:
sub-hub
2025-04-02 22:34:22 +09:00
parent c553478a78
commit 4df80bf98b

View File

@@ -58,7 +58,6 @@ export async function encode(data:string):Promise<(number[]|Uint32Array|Int32Arr
pluginTokenizer
);
const cachedResult = encodeCache.get(cacheKey);
console.log(encodeCache.size)
if (cachedResult !== undefined) {
return cachedResult;
}