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

rx.observable.combinetemplate

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rx.observable.combinetemplate - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

LICENSE

2

package.json
{
"name": "rx.observable.combinetemplate",
"version": "0.2.0",
"version": "0.2.1",
"description": "Generate values based on the Observable and object template. Similar to `Bacon.combineTemplate`",

@@ -5,0 +5,0 @@ "author": "ahomu",

@@ -133,3 +133,3 @@ 'use strict';

// isObservable(?)
if (value.isDisposed != null && value.isStopped != null) {
if (!!value && value.isDisposed != null && value.isStopped != null) {
targets.push(value);

@@ -139,3 +139,3 @@ contexts.push(context);

// isArray || isObject
} else if (Array.isArray(value) || (typeof value === 'object' && !!value)) {
} else if (Array.isArray(value) || (!!value && typeof value === 'object')) {
walker(value, context);

@@ -142,0 +142,0 @@ }

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