You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

async-later

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

async-later - npm Package Compare versions

Comparing version

to
0.1.1

2

package.json
{
"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(