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

sailthru-client

Package Overview
Dependencies
Maintainers
2
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sailthru-client - npm Package Compare versions

Comparing version 3.0.2 to 3.0.4

4

lib/sailthru.js

@@ -13,3 +13,3 @@ (function() {

rest = require('restler');
rest = require('restler-base');

@@ -23,3 +23,3 @@ fs = require('fs');

exports.VERSION = '3.0.2';
exports.VERSION = '3.0.4';

@@ -26,0 +26,0 @@ USER_AGENT = 'Sailthru API Node/JavaScript Client ' + exports.VERSION;

{
"name": "sailthru-client",
"description": "Node.js client for Sailthru API",
"version": "3.0.2",
"version": "3.0.4",
"author": {

@@ -16,3 +16,3 @@ "name": "George Liao",

"dependencies": {
"restler": "^3.4.0"
"restler-base": "^3.4.6"
},

@@ -19,0 +19,0 @@ "devDependencies": {

(function() {
var mock = require('mock-require');
mock('fs', {
statSync: function() {return {size: 2}; },
open: function(a,b,c,cb) { cb(); },
read: function(a,b,c,d,cb){ cb(); },
statSync: function() { return {size: 2}; },
fstatSync: function() { return {size: 1024}; },
open: function(a,b,cb) { cb(); },
read: function(a,b,c,d,e,cb) { cb(null, null, b); },
close: function() {}

@@ -8,0 +9,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