Socket
Socket
Sign inDemoInstall

@percy/env

Package Overview
Dependencies
Maintainers
6
Versions
238
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@percy/env - npm Package Compare versions

Comparing version 1.26.3-beta.1 to 1.26.3-beta.2

12

dist/utils.js

@@ -55,2 +55,14 @@ import fs from 'fs';

return github.payload || (github.payload = {});
}
// auto strip double quotes/spaces if any
export function stripQuotesAndSpaces(line) {
if (typeof line === 'string') {
const regex = /^["\s"]+|["\s"]+$/g;
const strippedLine = line.replace(regex, '');
return strippedLine;
} else {
return null;
}
;
}

6

package.json
{
"name": "@percy/env",
"version": "1.26.3-beta.1",
"version": "1.26.3-beta.2",
"license": "MIT",

@@ -35,5 +35,5 @@ "repository": {

"dependencies": {
"@percy/logger": "1.26.3-beta.1"
"@percy/logger": "1.26.3-beta.2"
},
"gitHead": "6571d4ad016bc8b3b32d49bf8a7da1393c1a5eba"
"gitHead": "5e402f5ff469cc521506fef6a347e04a1a2e1434"
}
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