Socket
Socket
Sign inDemoInstall

syntex-basic

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

syntex-basic - npm Package Compare versions

Comparing version 1.0.0-b15 to 1.0.0-b16

8

core/connection-manager.js

@@ -16,5 +16,5 @@ const url = require('url');

this.platform.RequestManager.fetch(this.url.protocol + '//' + this.url.host + path, { data, verbose : true }).then((data) => {
this.platform.RequestManager.fetch(this.url.protocol + '//' + this.url.host + path, { data, verbose : true }).then((response) => {
resolve(data);
resolve(response.data);
});

@@ -53,5 +53,5 @@ });

this.platform.RequestManager.fetch(url).then((data) => {
this.platform.RequestManager.fetch(url).then((response) => {
if(data != null)
if(response.data != null)
{

@@ -58,0 +58,0 @@ resolve(new Connection(this.platform, url));

{
"name": "syntex-basic",
"version": "1.0.0-b15",
"version": "1.0.0-b16",
"description": "A basic module for development",

@@ -5,0 +5,0 @@ "main": "main.js",

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