2.0.0 • Published 7 years ago

wire-webapp-lru-cache v2.0.0

Weekly downloads
3
License
GPL-3.0
Repository
github
Last release
7 years ago

Wire

This repository is part of the source code of Wire. You can find more information at wire.com or by contacting opensource@wire.com.

You can find the published source code at github.com/wireapp.

For licensing information, see the attached LICENSE file and the list of third-party licenses at wire.com/legal/licenses/.

Build Status

Build Status

Instructions

Installation

npm install --save wire-webapp-lru-cache

Import

TypeScript

import LRUCache = require('wire-webapp-lru-cache');
let cache = new LRUCache();

CommonJS

const LRUCache = require('wire-webapp-lru-cache');
let cache = new LRUCache();

Usage

Browser

Node.js