@remix_labs/hub-client 2.3167.0-dev → 2.3171.0-dev

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/common.js +8 -0
  2. package/package.json +1 -1
package/common.js CHANGED
@@ -470,6 +470,14 @@ class Channel {
470
470
  newEOF(rmxType, sender, payload) {
471
471
  return new EOF(rmxType, sender, payload);
472
472
  }
473
+
474
+ setMask(m) {
475
+ let msg =
476
+ { _rmx_type: "msg_hub_logMask",
477
+ mask: m
478
+ };
479
+ this.port.postMessage(msg);
480
+ }
473
481
  }
474
482
 
475
483
  // This class starts the web worker for the hub. Should only be instantiated
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remix_labs/hub-client",
3
- "version": "2.3167.0-dev",
3
+ "version": "2.3171.0-dev",
4
4
  "description": "talk to the Hub web worker",
5
5
  "main": "node.js",
6
6
  "browser": "index.js",