async-later
Advanced tools
Comparing version 0.1.0 to 0.1.1
{ | ||
"name": "async-later", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "Functional directives for Promise and AsyncIterable", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -95,3 +95,3 @@ # async-later 🏄♂️ | ||
```js | ||
import { partition, toAsyncIterable } from 'async-iterable'; | ||
import { partition, toAsyncIterable } from 'async-later'; | ||
@@ -177,3 +177,3 @@ const [p1, rest] = partition(2, toAsyncIterable([1, 2, 3, 4, 5])); | ||
```js | ||
import { firstValue, toAsyncIterable } from 'async-iterable'; | ||
import { firstValue, toAsyncIterable } from 'async-later'; | ||
@@ -197,3 +197,3 @@ const iterable = toAsyncIterable([1, 2, 3]); | ||
```js | ||
import { lastValue, toAsyncIterable } from 'async-iterable'; | ||
import { lastValue, toAsyncIterable } from 'async-later'; | ||
@@ -217,3 +217,3 @@ const iterable = toAsyncIterable([1, 2, 3]); | ||
```js | ||
import { valueAt, toAsyncIterable } from 'async-iterable'; | ||
import { valueAt, toAsyncIterable } from 'async-later'; | ||
@@ -235,3 +235,3 @@ const iterable = toAsyncIterable([1, 2, 3]); | ||
```js | ||
import { concurrently } from 'async-iterable'; | ||
import { concurrently } from 'async-later'; | ||
@@ -238,0 +238,0 @@ const result = await concurrently( |
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
27030