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

mobx-keystone-asyncstore

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mobx-keystone-asyncstore - npm Package Compare versions

Comparing version 0.2.1 to 0.3.0

11

dist/AsyncStore.js

@@ -127,3 +127,8 @@ "use strict";

}
}), { delay: throttle, fireImmediately: true });
}), {
fireImmediately: true,
scheduler: (run) => {
return setTimeout(run, throttle);
},
});
return () => {

@@ -176,4 +181,4 @@ dispose();

}
getAll() {
if (!this.hasAll && !this.fetchQueue.includes("*")) {
getAll(force = false) {
if (force || (!this.hasAll && !this.fetchQueue.includes("*"))) {
this.addToFetchQueue("*");

@@ -180,0 +185,0 @@ }

{
"name": "mobx-keystone-asyncstore",
"version": "0.2.1",
"version": "0.3.0",
"author": "Marcus Ekwall <marcus.ekwall@gmail.com>",

@@ -26,3 +26,3 @@ "license": "MIT",

"@types/jest": "^26.0.7",
"@types/node": "^14.0.25",
"@types/node": "^14.0.27",
"@yarnpkg/pnpify": "^2.1.0",

@@ -29,0 +29,0 @@ "jest": "^26.1.0",

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