Socket
Socket
Sign inDemoInstall

digdug

Package Overview
Dependencies
37
Maintainers
2
Versions
24
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.3.0 to 1.3.1

2

package.json
{
"name": "digdug",
"version": "1.3.0",
"version": "1.3.1",
"description": "Dig Dug. A simple abstraction library for downloading and launching WebDriver service tunnels.",

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

@@ -186,3 +186,8 @@ /**

// `fs.watch` API has extra restrictions which are best avoided
fs.watchFile(readyFile, { persistent: false, interval: 1007 }, function () {
fs.watchFile(readyFile, { persistent: false, interval: 1007 }, function (current, previous) {
if (Number(current.mtime) === Number(previous.mtime)) {
// readyFile hasn't been modified, so ignore the event
return;
}
fs.unwatchFile(readyFile);

@@ -189,0 +194,0 @@ dfd.resolve();

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