UNPKG

@emigrate/cli

Version:

Emigrate is a tool for managing database migrations. It is designed to be simple yet support advanced setups, modular and extensible.

6 lines 177 B
export async function* arrayMapAsync(iterable, mapper) { for await (const item of iterable) { yield mapper(item); } } //# sourceMappingURL=array-map-async.js.map