most-from-array
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

most-from-array

Creates a most/core stream from an array.

Usage

import { fromArray } from 'most-from-array'
 
const stream = fromArray([1, 2, 3, 4])
const tapped = tap(console.log, stream)
runEffects(tapped, newDefaultScheduler())
/*
Console output:
1
2
3
4
*/

/most-from-array/

    Package Sidebar

    Install

    npm i most-from-array

    Weekly Downloads

    2,352

    Version

    1.0.3

    License

    MIT

    Unpacked Size

    10.3 kB

    Total Files

    11

    Last publish

    Collaborators

    • hoichi