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

@formatjs/fast-memoize

Package Overview
Dependencies
Maintainers
3
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@formatjs/fast-memoize - npm Package Compare versions

Comparing version 1.2.7 to 1.2.8

4

index.d.ts

@@ -9,4 +9,4 @@ type Func = (...args: any[]) => any;

interface DefaultCache<K, V> {
get(key: K): V;
set(key: K, value: V): void;
get(key: K): V | undefined;
set(key: K, value: V | undefined): void;
}

@@ -13,0 +13,0 @@ export type Serializer = (args: any[]) => string;

@@ -9,4 +9,4 @@ type Func = (...args: any[]) => any;

interface DefaultCache<K, V> {
get(key: K): V;
set(key: K, value: V): void;
get(key: K): V | undefined;
set(key: K, value: V | undefined): void;
}

@@ -13,0 +13,0 @@ export type Serializer = (args: any[]) => string;

{
"name": "@formatjs/fast-memoize",
"version": "1.2.7",
"version": "1.2.8",
"description": "fork of fast-memoize and support esm",

@@ -5,0 +5,0 @@ "main": "index.js",

Sorry, the diff of this file is not supported yet

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