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

memoizee

Package Overview
Dependencies
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

memoizee - npm Package Compare versions

Comparing version 0.4.10 to 0.4.11

.npmignore

10

CHANGELOG.md

@@ -5,2 +5,12 @@ # Change Log

<a name="0.4.11"></a>
## [0.4.11](https://github.com/medikoo/memoizee/compare/v0.4.10...v0.4.11) (2017-09-11)
### Bug Fixes
* _get and _has internal args handling. ([7cb1c7a](https://github.com/medikoo/memoizee/commit/7cb1c7a)), closes [#88](https://github.com/medikoo/memoizee/issues/88)
<a name="0.4.10"></a>

@@ -7,0 +17,0 @@ ## [0.4.10](https://github.com/medikoo/memoizee/compare/v0.4.9...v0.4.10) (2017-09-07)

8

lib/configure-map.js

@@ -165,4 +165,6 @@ /* eslint no-eq-null: 0, eqeqeq: 0, no-unused-vars: 0 */

var id, args = arguments;
if (length === 0) return cache.data;
if (resolve) args = resolve(args);
id = get(args);
if (get) id = get(args);
else id = String(args[0]);
return cache[id];

@@ -172,4 +174,6 @@ });

var id, args = arguments;
if (length === 0) return conf.has("data");
if (resolve) args = resolve(args);
id = get(args);
if (get) id = get(args);
else id = String(args[0]);
if (id === null) return false;

@@ -176,0 +180,0 @@ return conf.has(id);

{
"name": "memoizee",
"version": "0.4.10",
"version": "0.4.11",
"description": "Memoize/cache function results",

@@ -5,0 +5,0 @@ "author": "Mariusz Nowak <medikoo@medikoo.com> (http://www.medikoo.com/)",

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