Socket
Socket
Sign inDemoInstall

@percy/core

Package Overview
Dependencies
Maintainers
1
Versions
233
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@percy/core - npm Package Compare versions

Comparing version 1.29.4-beta.3 to 1.29.4-beta.4

12

dist/discovery.js

@@ -70,6 +70,12 @@ import logger from '@percy/logger';

const eqIdx = c.indexOf('=');
return {
name: c.substring(0, eqIdx),
value: c.substring(eqIdx + 1)
const name = c.substring(0, eqIdx);
const value = c.substring(eqIdx + 1);
const cookieObj = {
name,
value
};
if (name.startsWith('__Secure')) {
cookieObj.secure = true;
}
return cookieObj;
});

@@ -76,0 +82,0 @@ }

{
"name": "@percy/core",
"version": "1.29.4-beta.3",
"version": "1.29.4-beta.4",
"license": "MIT",

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

"dependencies": {
"@percy/client": "1.29.4-beta.3",
"@percy/config": "1.29.4-beta.3",
"@percy/dom": "1.29.4-beta.3",
"@percy/logger": "1.29.4-beta.3",
"@percy/webdriver-utils": "1.29.4-beta.3",
"@percy/client": "1.29.4-beta.4",
"@percy/config": "1.29.4-beta.4",
"@percy/dom": "1.29.4-beta.4",
"@percy/logger": "1.29.4-beta.4",
"@percy/webdriver-utils": "1.29.4-beta.4",
"content-disposition": "^0.5.4",

@@ -64,3 +64,3 @@ "cross-spawn": "^7.0.3",

},
"gitHead": "8c61c0ad7a8a1b61f199a2a011ac296764cdc2eb"
"gitHead": "373606636f133996307a33529e6f45632d18bdd9"
}
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