New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@zodash/memoize

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@zodash/memoize - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

4

lib/memoize.d.ts

@@ -1,3 +0,3 @@

export declare function memoize(fn: (...args: any[]) => any, resolver: (...args: any[]) => string): {
(...args: any[]): any;
export declare function memoize<T extends any[], R>(fn: (...args: T) => R, resolver: (...args: T) => string): {
(...args: T): R;
cache: Map<any, any>;

@@ -4,0 +4,0 @@ };

{
"name": "@zodash/memoize",
"version": "1.0.0",
"version": "1.0.1",
"description": "Create a function that memoizes the result of `func` according to the `resolver` function.",

@@ -67,3 +67,3 @@ "keywords": [

},
"gitHead": "51750aa5616afce38975a349d7b063596db69a8e"
"gitHead": "3e1105654fbcfd1e29786fb2a6188fd48745541a"
}

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