skip operator for basic-streams
npm install @basic-streams/skip``typescript`
skip
Creates a stream containing values from the given stream except for the firstn values.
`js
import ofMany from "@basic-streams/of-many"
import skip from "@basic-streams/skip"
const stream = ofMany([1, 2, 3], 5000)
const result = skip(2, stream)
result(x => {
console.log(x)
})
// > 3
// stream: ____1____2____3
// result: ______________3
``