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

browser-pack

Package Overview
Dependencies
Maintainers
1
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

browser-pack - npm Package Compare versions

Comparing version 0.2.0 to 0.2.1

10

index.js

@@ -35,5 +35,5 @@ var JSONStream = require('JSONStream');

function write (row) {
if (first) output.emit('data', prelude);
if (first) this.queue(prelude);
this.emit('data', [
this.queue([
(first ? '' : ','),

@@ -56,7 +56,7 @@ JSON.stringify(row.id),

function end () {
if (first) output.emit('data', prelude);
if (first) this.queue(prelude);
this.emit('data', '},{},' + JSON.stringify(entries) + ')');
this.emit('end');
this.queue('},{},' + JSON.stringify(entries) + ')');
this.queue(null);
}
};
{
"name": "browser-pack",
"version": "0.2.0",
"version": "0.2.1",
"description": "pack node-style source files from a json stream into a browser bundle",

@@ -12,3 +12,3 @@ "main": "index.js",

"duplexer": "~0.0.3",
"through": "~2.1.0"
"through": "~2.2.0"
},

@@ -15,0 +15,0 @@ "devDependencies": {

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