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

leadfoot

Package Overview
Dependencies
Maintainers
3
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

leadfoot - npm Package Compare versions

Comparing version 1.6.5 to 1.6.6

6

package.json
{
"name": "leadfoot",
"version": "1.6.5",
"version": "1.6.6",
"description": "Leadfoot. A JavaScript client library that brings cross-platform consistency to the Selenium WebDriver API.",

@@ -11,7 +11,7 @@ "repository": {

"dependencies": {
"dojo": "2.0.0-alpha.6",
"dojo": "2.0.0-alpha.7",
"jszip": "2.5.0"
},
"devDependencies": {
"intern": "3.0.3"
"intern": "3.0.6"
},

@@ -18,0 +18,0 @@ "bugs": "https://github.com/theintern/leadfoot/issues",

@@ -79,3 +79,10 @@ /* global document:false */

if (response.statusCode >= 300 && response.statusCode < 400 && response.getHeader('Location')) {
return request(response.getHeader('Location'), {
var redirectUrl = response.getHeader('Location');
// If redirectUrl isn't an absolute URL, resolve it based on the orignal URL used to create the session
if (!/^\w+:/.test(redirectUrl)) {
redirectUrl = urlUtil.resolve(url, redirectUrl);
}
return request(redirectUrl, {
method: 'GET',

@@ -82,0 +89,0 @@ headers: defaultRequestHeaders

Sorry, the diff of this file is too big to display

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