Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

basic-lru

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

basic-lru - npm Package Compare versions

Comparing version
1.0.0
to
1.0.1
+3
-2
package.json
{
"name": "basic-lru",
"version": "1.0.0",
"description": "A lightweight Map based LRU implementation",
"version": "1.0.1",
"description": "A fast and lightweight Map based LRU implementation.",
"main": "cjs/index.js",

@@ -17,2 +17,3 @@ "scripts": {

"keywords": [
"fast",
"lru",

@@ -19,0 +20,0 @@ "lightweight",

+4
-2
# basic-lru
<sup>**Social Media Photo by [Mr Cup / Fabien Barral](https://unsplash.com/@iammrcup) on [Unsplash](https://unsplash.com/)**</sup>
[![Build Status](https://travis-ci.com/WebReflection/basic-lru.svg?branch=master)](https://travis-ci.com/WebReflection/basic-lru) [![Coverage Status](https://coveralls.io/repos/github/WebReflection/basic-lru/badge.svg?branch=master)](https://coveralls.io/github/WebReflection/basic-lru?branch=master)
A lightweight, as in 1.2K, Map based LRU implementation.
A fast and lightweight, as in [684 bytes](https://unpkg.com/basic-lru), Map based LRU implementation.

@@ -30,3 +32,3 @@ ```js

Differently from other modules, this one has the least amount of LOC, zero dependencies, and it's based on ES2015 class capability to extend the native Map.
Differently from other modules, this one has the least amount of LOC, zero dependencies, and it's based on _ES2015_ class capability to extend the native `Map`.

@@ -33,0 +35,0 @@