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

@synhaptein/falcor-http-datasource

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@synhaptein/falcor-http-datasource - npm Package Compare versions

Comparing version 0.1.4 to 0.1.5

2

package.json
{
"name": "@synhaptein/falcor-http-datasource",
"version": "0.1.4",
"version": "0.1.5",
"description": "This package contains falcor components for use in browsers.",

@@ -5,0 +5,0 @@ "main": "src/XMLHttpSource.js",

@@ -62,3 +62,8 @@ 'use strict';

if (hasOwnProp.call(options, prop)) {
config[prop] = options[prop];
if (typeof options[prop] === "function") {
config[prop] = options[prop]();
}
else {
config[prop] = options[prop];
}
}

@@ -65,0 +70,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