json-rpc-engine
Advanced tools
Comparing version 3.0.0 to 3.0.1
{ | ||
"name": "json-rpc-engine", | ||
"version": "3.0.0", | ||
"version": "3.0.1", | ||
"description": "a tool for processing JSON RPC", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -8,3 +8,3 @@ # RpcEngine | ||
```js | ||
const RpcEngine = require('rpc-engine') | ||
const RpcEngine = require('json-rpc-engine') | ||
@@ -78,2 +78,2 @@ let engine = new RpcEngine() | ||
}) | ||
``` | ||
``` |
@@ -93,3 +93,4 @@ 'use strict' | ||
// returns, indicating whether or not it ended | ||
function completeRequest () { | ||
function completeRequest (err) { | ||
if (err) return cb(err) | ||
cb(null, isComplete) | ||
@@ -96,0 +97,0 @@ } |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
12926
295
78
0