Creates a mostjs stream from an array
npm install most-from-arrayCreates a most/core stream from an array.
``ts
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
*/
``