search-sdk
Advanced tools
Comparing version 0.2.0 to 0.2.1
@@ -39,5 +39,5 @@ (function() { | ||
next = _(response["@search.nextPageParameters"]).omit(__ignoreType).value(); | ||
facets = _(response["@search.facets"]).omit(__ignoreType).pairs().map(function(arg) { | ||
facets = _(response["@search.facets"]).omit(__ignoreType).entries().map(function(arg) { | ||
var key, value; | ||
key = arg.key, value = arg.value; | ||
key = arg[0], value = arg[1]; | ||
return { | ||
@@ -44,0 +44,0 @@ key: key, |
{ | ||
"name": "search-sdk", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"description": "search-sdk", | ||
@@ -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
22401