Socket
Socket
Sign inDemoInstall

multistream

Package Overview
Dependencies
Maintainers
2
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

multistream - npm Package Compare versions

Comparing version 1.5.0 to 1.5.1

.zuul.yml

27

package.json
{
"name": "multistream",
"description": "A stream that emits multiple other streams one after another (streams2)",
"version": "1.5.0",
"version": "1.5.1",
"author": "Feross Aboukhadijeh <feross@feross.org> (http://feross.org/)",

@@ -14,5 +14,7 @@ "bugs": {

"concat-stream": "^1.4.6",
"standard": "^4.0.0",
"string-to-stream": "^1.0.0",
"tape": "^4.0.0",
"through": "^2.3.4"
"through": "^2.3.4",
"zuul": "^3.0.0"
},

@@ -42,20 +44,7 @@ "homepage": "https://github.com/feross/multistream",

"scripts": {
"test": "tape test/*.js"
},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/9..latest",
"chrome/25..latest",
"chrome/canary",
"firefox/20..latest",
"firefox/nightly",
"safari/6..latest",
"opera/15.0..latest",
"opera/next",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2..latest"
]
"test": "standarD && npm run test-node && npm run test-browser",
"test-browser": "zuul -- test/*.js",
"test-browser-local": "zuul --local -- test/*.js",
"test-node": "tape test/*.js"
}
}

@@ -1,6 +0,13 @@

# multistream [![travis](https://img.shields.io/travis/feross/multistream.svg)](https://travis-ci.org/feross/multistream) [![npm](https://img.shields.io/npm/v/multistream.svg)](https://npmjs.org/package/multistream)
# multistream [![travis][travis-image]][travis-url] [![npm][npm-image]][npm-url] [![downloads][downloads-image]][downloads-url]
[travis-image]: https://img.shields.io/travis/feross/multistream.svg?style=flat
[travis-url]: https://travis-ci.org/feross/multistream
[npm-image]: https://img.shields.io/npm/v/multistream.svg?style=flat
[npm-url]: https://npmjs.org/package/multistream
[downloads-image]: https://img.shields.io/npm/dm/multistream.svg?style=flat
[downloads-url]: https://npmjs.org/package/multistream
#### A stream that emits multiple other streams one after another (streams2)
[![browser support](https://ci.testling.com/feross/multistream.png)](https://ci.testling.com/feross/multistream)
[![Sauce Test Status](https://saucelabs.com/browser-matrix/magnet-uri.svg)](https://saucelabs.com/u/magnet-uri)

@@ -7,0 +14,0 @@ ![cat](https://raw.githubusercontent.com/feross/multistream/master/img.jpg)

@@ -9,5 +9,5 @@ var concat = require('concat-stream')

var streams = [
new str('1'),
new str('2'),
new str('3')
str('1'),
str('2'),
str('3')
]

@@ -25,3 +25,3 @@

test('combine streams (classic)', function(t) {
test('combine streams (classic)', function (t) {
var streams = [

@@ -49,8 +49,8 @@ through(),

var streams = [
new str('1'),
function() {
return new str('2')
str('1'),
function () {
return str('2')
},
function() {
return new str('3')
function () {
return str('3')
}

@@ -57,0 +57,0 @@ ]

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc