Comparing version 1.3.6 to 1.3.7
@@ -99,3 +99,3 @@ 'use strict'; // always strict mode | ||
// Find internal handler | ||
let handler = this._child[call.fnId].bind(this._child); | ||
let handler = this._child[call.fnId]; | ||
@@ -127,3 +127,3 @@ // Handle inexistence | ||
// Run with applied params and await result | ||
response = await handler (...params); | ||
response = await handler.bind (this._child) (...params); | ||
} catch (err) { | ||
@@ -130,0 +130,0 @@ // Emit error as response |
{ | ||
"name": "arc-rpc", | ||
"version": "1.3.6", | ||
"version": "1.3.7", | ||
"description": "Asynchronous Remote Classes make RPC simple", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
11084