Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gofer

Package Overview
Dependencies
Maintainers
2
Versions
98
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gofer - npm Package Compare versions

Comparing version 2.1.4 to 2.1.5

5

CHANGELOG.md

@@ -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 @@ -----

6

lib/helpers.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc