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

syncano-server

Package Overview
Dependencies
Maintainers
2
Versions
99
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

syncano-server - npm Package Compare versions

Comparing version 0.6.0 to 0.7.0

11

lib/data.js

@@ -13,6 +13,2 @@ 'use strict';

var _camelcaseKeys = require('camelcase-keys');
var _camelcaseKeys2 = _interopRequireDefault(_camelcaseKeys);
var _queryBuilder = require('./query-builder');

@@ -80,3 +76,2 @@

var baseUrl = this.baseUrl;
var camelCase = this.instance.camelCase;

@@ -101,8 +96,2 @@ var fetch = this.fetch.bind(this);

if (camelCase === true) {
result = result.map(function (item) {
return (0, _camelcaseKeys2.default)(item);
});
}
resolve(result);

@@ -109,0 +98,0 @@ }

3

package.json
{
"name": "syncano-server",
"version": "0.6.0",
"version": "0.7.0",
"description": "A library to intereact with the Syncano API on a server side",

@@ -33,3 +33,2 @@ "main": "lib/index.js",

"dependencies": {
"camelcase-keys": "^4.0.0",
"node-fetch": "^1.6.3"

@@ -36,0 +35,0 @@ },

import querystring from 'querystring'
import camelcaseKeys from 'camelcase-keys'
import QueryBuilder from './query-builder'

@@ -34,3 +33,2 @@ import {NotFoundError} from './errors'

const {baseUrl} = this
const {camelCase} = this.instance
const fetch = this.fetch.bind(this)

@@ -56,6 +54,2 @@ const pageSize = this.query.page_size || 0

if (camelCase === true) {
result = result.map(item => camelcaseKeys(item))
}
resolve(result)

@@ -62,0 +56,0 @@ }

Sorry, the diff of this file is not supported yet

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