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

@proscom/prostore

Package Overview
Dependencies
Maintainers
1
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@proscom/prostore - npm Package Compare versions

Comparing version 0.0.11 to 0.0.12

2

lib/es/RequestStore.js

@@ -115,3 +115,3 @@ var __assign = (this && this.__assign) || function () {

case 0:
promise = this.state$.pipe(first(function (state) { return !state.loading && state.loaded && state.variables === variables; })).toPromise();
promise = this.state$.pipe(first(function (state) { return !state.loading && (state.loaded || state.error) && state.variables === variables; })).toPromise();
this.variables$.next({ variables: variables, options: options });

@@ -118,0 +118,0 @@ return [4 /*yield*/, promise];

@@ -117,3 +117,3 @@ "use strict";

case 0:
promise = this.state$.pipe(operators_1.first(function (state) { return !state.loading && state.loaded && state.variables === variables; })).toPromise();
promise = this.state$.pipe(operators_1.first(function (state) { return !state.loading && (state.loaded || state.error) && state.variables === variables; })).toPromise();
this.variables$.next({ variables: variables, options: options });

@@ -120,0 +120,0 @@ return [4 /*yield*/, promise];

{
"name": "@proscom/prostore",
"version": "0.0.11",
"version": "0.0.12",
"description": "> TODO: description",

@@ -29,3 +29,3 @@ "author": "Andrew Starostin <a.starostin@proscom.ru>",

"sideEffects": false,
"gitHead": "ecf2a3c30b66925f3086edd2f38e3ebb6b2eaf22"
"gitHead": "8205e91b12ac93b36c5e6b56762defb8f6a0ffa5"
}

@@ -120,3 +120,3 @@ import {IStore} from './IStore';

const promise = this.state$.pipe(
first((state) => !state.loading && state.loaded && state.variables === variables)
first((state) => !state.loading && (state.loaded || state.error) && state.variables === variables)
).toPromise();

@@ -123,0 +123,0 @@ this.variables$.next({ variables, options });

Sorry, the diff of this file is not supported yet

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