Socket
Socket
Sign inDemoInstall

mem

Package Overview
Dependencies
3
Maintainers
3
Versions
29
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 6.0.0 to 6.0.1

7

index.d.ts

@@ -91,7 +91,8 @@ declare namespace mem {

ReturnType,
CacheKeyType
CacheKeyType,
FunctionToMemoize = (...arguments: ArgumentsType) => ReturnType
>(
fn: (...arguments: ArgumentsType) => ReturnType,
fn: FunctionToMemoize,
options?: mem.Options<ArgumentsType, CacheKeyType, ReturnType>
): (...arguments: ArgumentsType) => ReturnType;
): FunctionToMemoize;

@@ -98,0 +99,0 @@ /**

{
"name": "mem",
"version": "6.0.0",
"version": "6.0.1",
"description": "Memoize functions - An optimization used to speed up consecutive function calls by caching the result of calls with identical input",

@@ -43,5 +43,5 @@ "license": "MIT",

"serialize-javascript": "^2.1.0",
"tsd": "^0.10.0",
"tsd": "^0.11.0",
"xo": "^0.25.3"
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc