@janiscommerce/api
Advanced tools
Comparing version 5.1.2 to 5.1.3
@@ -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 |
@@ -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", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
26471