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

simpleesb

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simpleesb - npm Package Compare versions

Comparing version 0.1.15 to 0.1.16

5

offramps/debugofframp.js

@@ -10,7 +10,6 @@ var util = require('util');

function DebugOffRamp() {
OffRamp.call(this);
function DebugOffRamp() {
}
DebugOffRamp.prototype = OffRamp.prototype;
DebugOffRamp.prototype = new OffRamp();
DebugOffRamp.prototype.constructor = DebugOffRamp;

@@ -17,0 +16,0 @@

3

offramps/fileofframp.js

@@ -10,4 +10,3 @@ var util = require('util');

function FileOffRamp(){
OffRamp.call(this);
function FileOffRamp(){
this.folder = '';

@@ -14,0 +13,0 @@ this.filename = '';

@@ -13,3 +13,2 @@ var util = require('util');

function HttpOffRamp() {
OffRamp.call(this);
this.destinationUrl = '';

@@ -19,3 +18,3 @@ this.httpMethod = 'GET';

HttpOffRamp.prototype = OffRamp.prototype;
HttpOffRamp.prototype = new OffRamp();
HttpOffRamp.prototype.constructor = HttpOffRamp;

@@ -22,0 +21,0 @@

@@ -11,4 +11,3 @@ var util = require('util');

function HttpScraper() {
OffRamp.call(this);
function HttpScraper() {
this.destinationUrl = '';

@@ -21,3 +20,3 @@ this.httpMethod = 'GET';

HttpScraper.prototype = OffRamp.prototype;
HttpScraper.prototype = new OffRamp();
HttpScraper.prototype.constructor = HttpScraper;

@@ -24,0 +23,0 @@

@@ -10,4 +10,3 @@ var util = require('util');

function SqsOffRamp(){
OffRamp.call(this);
function SqsOffRamp(){
this.queueName = '';

@@ -14,0 +13,0 @@ this.sqs = null;

@@ -10,3 +10,4 @@ /*

FileOnRamp.call(this);
//FileOnRamp.call(this);
//
this.split = false;

@@ -30,3 +31,3 @@ this.native = false;

ExcelOnRamp.prototype.constructor = FileOnRamp;
ExcelOnRamp.prototype.constructor = ExcelOnRamp;

@@ -33,0 +34,0 @@ ExcelOnRamp.prototype.Split = function() {

@@ -10,4 +10,3 @@ /*

function FileOnRamp(){
OnRamp.call(this);
this.location = null;

@@ -14,0 +13,0 @@ this.filter = "*.*";

@@ -9,5 +9,3 @@ /*

function SqsOnRamp(){
OnRamp.call(this);
function SqsOnRamp(){
this.sqs = null;

@@ -14,0 +12,0 @@ }

{ "author": "Phil Taylor"
, "name": "simpleesb"
, "description": "Provides basic ESB services to transfer data between applications."
, "version": "0.1.15"
, "version": "0.1.16"
, "repository": {

@@ -6,0 +6,0 @@ "url": "https://bitbucket.org/phil_a_taylor/simpleesb"

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