UNPKG

@effect-ts/system

Version:

Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.

9 lines (8 loc) 220 B
import * as FromIterable from "./fromIterable.mjs"; /** * Creates a stream from the specified values */ export function make(...values) { return FromIterable.fromIterable(values); } //# sourceMappingURL=make.mjs.map