bs-highland

BuckleScript bindings to the Highland stream library.

Usage no npm install needed!

<script type="module">
  import bsHighland from 'https://cdn.skypack.dev/bs-highland';
</script>

README

pipeline status

bs-highland

BuckleScript bindings for the Highland JavaScript stream library.

Usage

Highland.make( `Array([| 1, 2 |]) )
|. Highland.zip(Highland.make( `Array([| 3, 4 |]) ))
|. Highland.toArray((array) => Js.log2("Array: ", array))
/* => [ 1, 2, 3, 4 ] */