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.2 to 0.5.0

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.2",
"version": "0.5.0",
"author": "Ben Newman <ben@benjamn.com>",

@@ -5,0 +5,0 @@ "description": "Composable reactive caching with efficient invalidation.",

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