Comparing version 2.1.4 to 2.1.5
@@ -0,1 +1,6 @@ | ||
2.1.5 | ||
----- | ||
* Run tests on iojs - @jkrems #22 | ||
* Example in README file updated - @renatomoya #21 | ||
2.1.4 | ||
@@ -2,0 +7,0 @@ ----- |
@@ -124,5 +124,7 @@ /* | ||
wrappedPathParams = reduce(pathParams, function (acc, value, tag) { | ||
var wrappedTag; | ||
var encoded, encodedWrapped, wrappedTag; | ||
encoded = encodeURIComponent(value); | ||
wrappedTag = '{' + tag + '}'; | ||
acc[wrappedTag] = encodeURIComponent(value); | ||
encodedWrapped = '%7B' + tag + '%7D'; | ||
acc[wrappedTag] = acc[encodedWrapped] = encoded; | ||
return acc; | ||
@@ -129,0 +131,0 @@ }, {}); |
{ | ||
"name": "gofer", | ||
"version": "2.1.4", | ||
"version": "2.1.5", | ||
"description": "A general purpose service client library for node.js", | ||
@@ -5,0 +5,0 @@ "main": "lib/gofer.js", |
@@ -199,3 +199,3 @@ # gofer | ||
console.log('Status code: %d', response.statusCode); | ||
console.log('Returned %d emojis', Object.keys(data).length); | ||
console.log('Returned %d emojis', Object.keys(emojiList).length); | ||
}); | ||
@@ -202,0 +202,0 @@ ``` |
Sorry, the diff of this file is not supported yet
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
50115
670