async-cache-dedupe
Advanced tools
Comparing version 1.10.0 to 1.10.1
{ | ||
"name": "async-cache-dedupe", | ||
"version": "1.10.0", | ||
"version": "1.10.1", | ||
"description": "An async deduping cache", | ||
@@ -56,3 +56,3 @@ "main": "index.js", | ||
"tape": "^5.6.3", | ||
"tsd": "^0.25.0", | ||
"tsd": "^0.26.1", | ||
"vite": "^4.0.4", | ||
@@ -59,0 +59,0 @@ "webpack": "^5.75.0", |
'use strict' | ||
const LRUCache = require('mnemonist/lru-cache') | ||
const { abstractLogging } = require('../util') | ||
const { abstractLogging, isServerSide } = require('../util') | ||
const StorageInterface = require('./interface') | ||
const { findMatchingIndexes, findNotMatching, bsearchIndex, wildcardMatch } = require('../util') | ||
// istanbul ignore next | ||
const setImmediate = isServerSide ? globalThis.setImmediate : (fn, ...args) => setTimeout(fn, 0, ...args) | ||
const DEFAULT_CACHE_SIZE = 1024 | ||
@@ -9,0 +12,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
183444
4472