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

marionette-client

Package Overview
Dependencies
Maintainers
6
Versions
85
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

marionette-client - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

16

lib/marionette/client.js

@@ -406,2 +406,11 @@ (function(module, ns) {

/**
* This function will be invoked whenever the remote throws a
* ScriptTimeout error. The motivation is that client consumers
* can use this opportunity to log some useful state for debugging.
*
* @type {Function}
*/
onScriptTimeout: null,
/**
* Sends a command to the server.

@@ -464,3 +473,8 @@ * Adds additional information like actor and session

if (args[0]) {
args[0] = new Exception(args[0]);
var err = new Exception(args[0]);
if (err.type === 'ScriptTimeout') {
this.onScriptTimeout && this.onScriptTimeout(err);
}
args[0] = err;
}

@@ -467,0 +481,0 @@

2

package.json
{
"name": "marionette-client",
"version": "1.0.0",
"version": "1.0.1",
"main": "lib/marionette/index",

@@ -5,0 +5,0 @@ "description": "Marionette Javascript Client",

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