@gjsify/stream 0.0.3 → 0.0.4

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.
package/test.node.mjs CHANGED
@@ -14,14 +14,14 @@ var BLUE = "\x1B[34m";
14
14
  var GRAY = "\x1B[90m";
15
15
  var RESET = "\x1B[39m";
16
16
  var print = globalThis.print || console.log;
17
- var MatcherFactory = class {
17
+ var MatcherFactory = class _MatcherFactory {
18
18
  constructor(actualValue, positive, negated) {
19
19
  this.actualValue = actualValue;
20
20
  this.positive = positive;
21
21
  if (negated) {
22
22
  this.not = negated;
23
23
  } else {
24
- this.not = new MatcherFactory(actualValue, !positive, this);
24
+ this.not = new _MatcherFactory(actualValue, !positive, this);
25
25
  }
26
26
  }
27
27
  not;