New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

gofor

Package Overview
Dependencies
Maintainers
6
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gofor - npm Package Compare versions

Comparing version 3.0.2 to 3.0.3-rc-13f660f

8

configuration/test_setup.js

@@ -8,1 +8,9 @@ const fetch = require('node-fetch');

);
global.window = {};
Object.assign(global.window,
fetch,
{
fetch: fetch.bind(global.window)
}
);

4

package.json
{
"name": "gofor",
"version": "3.0.2",
"version": "3.0.3-rc-13f660f",
"description": "Lean, isomorphic fetch decorator that reverse merges default options",

@@ -45,4 +45,4 @@ "keywords": [

"publishConfig": {
"tag": "latest"
"tag": "gofor-browser"
}
}

@@ -91,3 +91,3 @@ /**

return function(...args) {
return fetch(...args);
return window.fetch(...args);
};

@@ -98,5 +98,5 @@ }

return {
Headers,
Request,
Response
Headers: window.Headers,
Request: window.Request,
Response: window.Response
};

@@ -103,0 +103,0 @@ }

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