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

optimism

Package Overview
Dependencies
Maintainers
1
Versions
72
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

optimism - npm Package Compare versions

Comparing version 0.4.0 to 0.4.1

8

lib/index.js
"use strict";
var LRU = require("lru-cache");
var tuple = require("immutable-tuple").tuple;
var Entry = require("./entry.js").Entry;
var slice = Array.prototype.slice;
function defaultMakeCacheKey() {
return JSON.stringify(slice.call(arguments));
return tuple.apply(null, arguments);
}

@@ -41,3 +41,5 @@

var args = slice.call(arguments);
var args = [], len = arguments.length;
while (len--) args[len] = arguments[len];
var entry = cache.get(key);

@@ -44,0 +46,0 @@ if (entry) {

{
"name": "optimism",
"version": "0.4.0",
"version": "0.4.1",
"author": "Ben Newman <ben@benjamn.com>",

@@ -31,2 +31,3 @@ "description": "Composable reactive caching with efficient invalidation.",

"dependencies": {
"immutable-tuple": "^0.4.4",
"lru-cache": "^4.1.1"

@@ -33,0 +34,0 @@ },

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