@bizon/amazon-ids
Advanced tools
Comparing version 2.0.0 to 2.0.1
10
index.js
@@ -39,5 +39,9 @@ const memoize = require('memoizee') | ||
exports.getMarketplacesByMwsRegion = memoize(mwsRegion => { | ||
return this.getMarketplacesByMwsDomain( | ||
mwsRegionDomains[String(mwsRegion).toLowerCase()] | ||
) | ||
const mwsDomain = mwsRegionDomains[String(mwsRegion).toLowerCase()] | ||
if (!mwsDomain) { | ||
return [] | ||
} | ||
return this.getMarketplacesByMwsDomain(mwsDomain) | ||
}) |
{ | ||
"name": "@bizon/amazon-ids", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "Collection of Amazon identifiers", | ||
@@ -5,0 +5,0 @@ "main": "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
11840
270