You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@pacote/memoize

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pacote/memoize - npm Package Compare versions

Comparing version

to
2.1.1

8

CHANGELOG.md

@@ -6,2 +6,10 @@ # Change Log

## [2.1.1](https://github.com/PacoteJS/pacote/compare/@pacote/memoize@2.1.0...@pacote/memoize@2.1.1) (2023-08-25)
**Note:** Version bump only for package @pacote/memoize
# [2.1.0](https://github.com/PacoteJS/pacote/compare/@pacote/memoize@2.0.2...@pacote/memoize@2.1.0) (2023-06-19)

@@ -8,0 +16,0 @@

6

package.json
{
"name": "@pacote/memoize",
"description": "Memoization function.",
"version": "2.1.0",
"version": "2.1.1",
"sideEffects": false,

@@ -37,6 +37,6 @@ "license": "MIT",

},
"gitHead": "64a608b1b6d702f9f665381a2a70adaea131846d",
"gitHead": "130affd281be18a42718fd9b47baa531a1146fb1",
"dependencies": {
"@pacote/lru-cache": "^0.1.0"
"@pacote/lru-cache": "^0.1.1"
}
}

@@ -16,3 +16,3 @@ import { LRUCache } from '@pacote/lru-cache'

fn: Fn<A, V>,
options: Options = {}
options: Options = {},
): MemoizedFn<A, V> {

@@ -19,0 +19,0 @@ const cache = options.capacity

@@ -9,3 +9,3 @@ import { assert, property, func, string, anything } from 'fast-check'

expect(memoizedFn(s)).toEqual(fn(s))
})
}),
)

@@ -12,0 +12,0 @@ })