Socket
Socket
Sign inDemoInstall

array-stream

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    array-stream

Convert a stream to an array


Version published
Weekly downloads
2
decreased by-33.33%
Maintainers
1
Install size
6.28 kB
Created
Weekly downloads
 

Readme

Source

array-stream

build status

browser support

Convert a stream to an array

Example

var toArray = require('array-stream')
var s = toArray(function (list) {
    assert.deepEqual(list, [
        "one"
        , "two"
        , "three"
        , "four"
        , "five"
    ])

    assert.end()
})

s.write("one\ntw")
s.write("o\nthree\nfo")
s.write("u")
s.write("r\nf")
s.write("iv")
s.end("e")

Installation

npm install array-stream

Contributors

  • Raynos

MIT Licenced

FAQs

Last updated on 29 Jan 2013

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc