Socket
Socket
Sign inDemoInstall

karma-chrome-launcher

Package Overview
Dependencies
2
Maintainers
2
Versions
28
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.11 to 0.1.12

18

index.js

@@ -57,6 +57,7 @@ var fs = require('fs'),

prefix = prefixes[i];
if (fs.realpathSync(prefix + suffix)) {
windowsChromeDirectory = prefix + suffix;
break;
}
try {
windowsChromeDirectory = path.join(prefix, suffix);
fs.accessSync(windowsChromeDirectory);
return windowsChromeDirectory;
} catch (e) {}
}

@@ -89,8 +90,9 @@

var homePath = path.join(process.env.HOME, defaultPath);
if (fs.realpathSync(homePath)) {
try {
var homePath = path.join(process.env.HOME, defaultPath);
fs.accessSync(homePath);
return homePath;
} catch (e) {
return defaultPath;
}
return defaultPath;
}

@@ -97,0 +99,0 @@

{
"name": "karma-chrome-launcher",
"version": "0.1.11",
"version": "0.1.12",
"description": "A Karma plugin. Launcher for Chrome and Chrome Canary.",

@@ -35,5 +35,4 @@ "main": "index.js",

"Aymeric Beaumet <aymeric@beaumet.me>",
"Julien Sanchez <julien.sanchez@lim.eu>",
"Filipe Guerra <alias.mac@gmail.com>",
"Jeff Cross <middlefloor@gmail.com>",
"Marko Vuksanovic <markovuksanovic@gmail.com>",
"Michał Gołębiowski <m.goleb@gmail.com>",

@@ -43,5 +42,6 @@ "Michał Gołębiowski <m.goleb@gmail.com>",

"Timo Tijhof <krinklemail@gmail.com>",
"Marko Vuksanovic <markovuksanovic@gmail.com>",
"Joe Doyle <valdain@gmail.com>",
"Filipe Guerra <alias.mac@gmail.com>"
"Julien Sanchez <julien.sanchez@lim.eu>"
]
}
SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc