async-call-rpc
Advanced tools
Comparing version 6.0.0 to 6.0.1
{ | ||
"name": "async-call-rpc", | ||
"version": "6.0.0", | ||
"version": "6.0.1", | ||
"description": "A lightweight JSON RPC server & client", | ||
@@ -5,0 +5,0 @@ "main": "out/base.js", |
@@ -29,3 +29,3 @@ import { Server } from 'https://deno.land/std@0.61.0/http/server.ts' | ||
for await (const event of websocket) { | ||
if (signal.signal.aborted) return | ||
if (signal.signal.aborted || websocket.isClosed) return | ||
callback(event).then((x) => x && websocket.send(x as any), this.error) | ||
@@ -32,0 +32,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
502164