Comparing version 0.1.0 to 0.1.1
@@ -35,2 +35,10 @@ | ||
read(): T; | ||
} | ||
export class MergeIterator<T> extends AsyncIterator<T> | ||
{ | ||
constructor(streams: T[]); | ||
protected _removeStream(stream: T): void; | ||
close(): void; | ||
read(): T; | ||
} |
12
index.js
@@ -7,7 +7,11 @@ | ||
const MergeStream = require('./util/MergeIterator'); | ||
module.exports = { | ||
DynamicNestedLoopJoin, | ||
HashJoin, | ||
NestedLoopJoin, | ||
SymmetricHashJoin | ||
DynamicNestedLoopJoin, | ||
HashJoin, | ||
NestedLoopJoin, | ||
SymmetricHashJoin, | ||
MergeStream | ||
}; |
{ | ||
"name": "asyncjoin", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "Join library for asynciterator", | ||
@@ -29,5 +29,5 @@ "license": "MIT", | ||
"join/**/*.js", | ||
"join/**/*.d.ts" | ||
"util/**/*.js" | ||
], | ||
"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
11052
9
298