asynciterator-promiseproxy
Advanced tools
Comparing version 1.0.0 to 1.0.1
{ | ||
"name": "asynciterator-promiseproxy", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "An AsyncIterator proxy that allows its source to be set via a promise.", | ||
@@ -19,2 +19,8 @@ "main": "index.js", | ||
"homepage": "https://github.com/rubensworks/asynciterator-promiseproxy#readme", | ||
"files": [ | ||
"lib/**/*.d.ts", | ||
"lib/**/*.js", | ||
"index.d.ts", | ||
"index.js" | ||
], | ||
"dependencies": { | ||
@@ -21,0 +27,0 @@ "asynciterator": "^1.1.0" |
@@ -16,5 +16,5 @@ # Async Promise Proxy Iterator | ||
```javascript | ||
const ProxyIterator = require('asynciterator-promiseproxy'); | ||
const PromiseProxyIterator = require('asynciterator-promiseproxy').PromiseProxyIterator; | ||
let it = new ProxyIterator(() -> makeIterator()); | ||
let it = new PromiseProxyIterator(() -> makeIterator()); | ||
it.on('data', console.log); | ||
@@ -21,0 +21,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
5768
7
39