elasticsearch
Advanced tools
Comparing version 15.1.0 to 15.1.1
@@ -10,3 +10,3 @@ { | ||
"homepage": "http://www.elastic.co/guide/en/elasticsearch/client/javascript-api/current/index.html", | ||
"version": "15.1.0", | ||
"version": "15.1.1", | ||
"keywords": [ | ||
@@ -13,0 +13,0 @@ "elasticsearch", |
@@ -1,2 +0,2 @@ | ||
# elasticsearch.js 15.1.0 | ||
# elasticsearch.js 15.1.1 | ||
@@ -3,0 +3,0 @@ The official low-level Elasticsearch client for Node.js and the browser. |
@@ -23,3 +23,7 @@ /** | ||
if (val) { | ||
return JSON.stringify(val, replacer, spaces); | ||
if (replacer || spaces) { | ||
return JSON.stringify(val, replacer, spaces); | ||
} else { | ||
return JSON.stringify(val); | ||
} | ||
} | ||
@@ -26,0 +30,0 @@ /* falls through */ |
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
3957298
111029