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

@janiscommerce/api

Package Overview
Dependencies
Maintainers
1
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@janiscommerce/api - npm Package Compare versions

Comparing version 5.1.2 to 5.1.3

4

CHANGELOG.md

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

## [5.1.3] - 2020-08-01
### Changed
- Fix isObject helper
## [5.1.2] - 2020-07-31

@@ -11,0 +15,0 @@ ### Changed

2

lib/utils.js

@@ -23,3 +23,3 @@ 'use strict';

const isObject = value => {
return typeof value === 'object' && !Array.isArray(value);
return !!value && typeof value === 'object' && !Array.isArray(value);
};

@@ -26,0 +26,0 @@

{
"name": "@janiscommerce/api",
"version": "5.1.2",
"version": "5.1.3",
"description": "A package for managing API from any origin",

@@ -5,0 +5,0 @@ "main": "lib/index.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