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

ovh

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ovh - npm Package Compare versions

Comparing version 0.3.6-1 to 0.3.6-2

1

CHANGELOG.md

@@ -6,2 +6,3 @@ # Changelog

* Fixes query string parameters.
* Fixes Proxy getter issue [096bff8].
* Remove exception in callREST.

@@ -8,0 +9,0 @@

8

ovh.js

@@ -188,3 +188,5 @@ //

if (typeof(this.$value) !== 'undefined' && typeof(this.$value[name]) !== 'undefined') {
if (typeof(this.$value) !== 'undefined' &&
Object.prototype.toString.call(this.$value) != '[object Array]' &&
typeof(this.$value[name]) !== 'undefined') {
return this.$value[name];

@@ -251,6 +253,6 @@ }

OVHWS.prototype.proxyResponseREST = function (response, refer, callback) {
if (Object.prototype.toString.call(response) === '[object Array]') {
if (Object.prototype.toString.call(response) == '[object Array]') {
var result = [];
for (var i = 0 ; i < response.length ; ++i) {
result.push(this.proxyResponseHandlerREST(refer, response[i], response[i]));
result.push(this.proxyResponseHandlerREST(refer, response[i]));
}

@@ -257,0 +259,0 @@

{
"name": "ovh",
"version": "0.3.6-1",
"version": "0.3.6-2",
"description": "An helper library to use OVH web services and REST APIs",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/gierschv/node-ovh",

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