Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

typescript-lru-cache

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

typescript-lru-cache - npm Package Compare versions

Comparing version 1.2.2 to 1.2.3

2

dist/LRUCache.d.ts

@@ -103,3 +103,3 @@ export interface LRUCacheOptions<TKey, TValue> {

*/
export declare class LRUCache<TKey = string, TValue = any> {
export declare class LRUCache<TKey = string, TValue = any> implements Iterable<LRUCacheEntry<TKey, TValue>> {
private readonly lookupTable;

@@ -106,0 +106,0 @@ private readonly entryExpirationTimeInMS;

{
"name": "typescript-lru-cache",
"version": "1.2.2",
"version": "1.2.3",
"description": "LRU Cache",

@@ -5,0 +5,0 @@ "author": "Robert Herber",

@@ -103,3 +103,3 @@ import { LRUCacheNode } from './LRUCacheNode';

*/
export class LRUCache<TKey = string, TValue = any> {
export class LRUCache<TKey = string, TValue = any> implements Iterable<LRUCacheEntry<TKey, TValue>> {
private readonly lookupTable: Map<TKey, LRUCacheNode<TKey, TValue>> = new Map();

@@ -106,0 +106,0 @@

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc