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

jisonify

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jisonify - npm Package Compare versions

Comparing version 0.1.2 to 1.0.0

9

index.js

@@ -13,7 +13,8 @@ /* jslint node: true */

var src = '';
var stream = through(write, end);
return through(write, end);
return stream;
function write(buffer) {
src += buffer;
function write(data) {
src += data;
}

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

this.queue(parser.generate());
} catch(e) {
} catch (e) {
stream.emit('error', e);

@@ -28,0 +29,0 @@ }

{
"name": "jisonify",
"version": "0.1.2",
"version": "1.0.0",
"description": "Browserify plugin for Jison parsers.",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -5,2 +5,4 @@ # Jisonify

Mix Jison parsers into your JS files and Browserify projects without needing additional build steps.
[![NPM version](https://badge.fury.io/js/jisonify.png)](https://npmjs.org/package/jisonify)

@@ -70,2 +72,3 @@ [![Build Status](https://travis-ci.org/schmich/jisonify.png?branch=master)](https://travis-ci.org/schmich/jisonify)

<!-- calc.html --->
<!DOCTYPE html>
<html>

@@ -85,2 +88,16 @@ <head>

### Programmatic example
```js
var browserify = require('browserify');
var jisonify = require('jisonify');
var b = browserify();
b.add('./main.js');
b.transform(jisonify);
b.bundle(function(err, src) {
// ...
});
```
## License

@@ -87,0 +104,0 @@

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