Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

labeled-stream-splicer

Package Overview
Dependencies
Maintainers
40
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

labeled-stream-splicer - npm Package Compare versions

Comparing version 2.0.1 to 2.0.2

9

example/bundle.js

@@ -7,5 +7,4 @@ var splicer = require('../');

var pipeline = splicer.obj([
'deps', [ deps(__dirname + '/browser/main.js') ],
'pack', [ pack({ raw: true }) ],
process.stdout
'deps', [ deps() ],
'pack', [ pack({ raw: true }) ]
]);

@@ -18,1 +17,5 @@

}));
pipeline.pipe(process.stdout);
pipeline.end(__dirname + '/browser/main.js');
var Splicer = require('stream-splicer');
var inherits = require('inherits');
var isarray = require('isarray');

@@ -22,3 +21,3 @@ module.exports = Labeled;

if (typeof s === 'string') continue;
if (isarray(s)) {
if (Array.isArray(s)) {
s = new Labeled(s, opts);

@@ -25,0 +24,0 @@ }

{
"name": "labeled-stream-splicer",
"version": "2.0.1",
"version": "2.0.2",
"description": "stream splicer with labels",

@@ -8,10 +8,9 @@ "main": "index.js",

"inherits": "^2.0.1",
"isarray": "^2.0.4",
"stream-splicer": "^2.0.0"
},
"devDependencies": {
"tape": "^2.12.1",
"browser-pack": "^2.0.1",
"browser-pack": "^6.1.0",
"concat-stream": "^1.4.6",
"module-deps": "^2.1.2",
"module-deps": "^6.2.0",
"tape": "^4.10.1",
"through2": "^1.0.0"

@@ -24,5 +23,5 @@ },

"type": "git",
"url": "git://github.com/substack/labeled-stream-splicer.git"
"url": "git://github.com/browserify/labeled-stream-splicer.git"
},
"homepage": "https://github.com/substack/labeled-stream-splicer",
"homepage": "https://github.com/browserify/labeled-stream-splicer",
"keywords": [

@@ -29,0 +28,0 @@ "splice",

@@ -12,3 +12,3 @@ var test = require('tape');

var pipeline = splicer.obj([
'deps', [ deps(__dirname + '/bundle/main.js') ],
'deps', [ deps() ],
'pack', [ pack({ raw: true }) ]

@@ -28,2 +28,4 @@ ]);

}));
pipeline.end(__dirname + '/bundle/main.js');
});

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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