Socket
Socket
Sign inDemoInstall

escodegen

Package Overview
Dependencies
0
Maintainers
1
Versions
60
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.6 to 0.0.7

LICENSE.source-map

2

bin/esgenerate.js

@@ -35,3 +35,3 @@ #!/usr/bin/env node

console.log('Usage:');
console.log(' esparse file.js');
console.log(' esgenerate file.js');
process.exit(1);

@@ -38,0 +38,0 @@ }

@@ -9,3 +9,3 @@ {

},
"version": "0.0.6",
"version": "0.0.7",
"engines": {

@@ -12,0 +12,0 @@ "node": ">=0.4.0"

@@ -38,2 +38,4 @@ Escodegen ([escodegen](http://github.com/Constellation/escodegen)) is

#### Escodegen
Copyright (C) 2012 [Yusuke Suzuki](http://github.com/Constellation)

@@ -63,2 +65,37 @@ (twitter: [@Constellation](http://twitter.com/Constellation)) and other contributors.

#### source-map
SourceNodeMocks has a limited interface of mozilla/source-map SourceNode implementations.
Copyright (c) 2009-2011, Mozilla Foundation and contributors
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the names of the Mozilla Foundation nor the names of project
contributors may be used to endorse or promote products derived from this
software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
### Status
[![Build Status](https://secure.travis-ci.org/Constellation/escodegen.png)](http://travis-ci.org/Constellation/escodegen)

@@ -793,3 +793,10 @@ /*

items: {
'switch(42){case 42:42;default:}': 'switch(42){case 42:42;default:}'
'switch(42){case 42:42;default:}': 'switch(42){case 42:42;default:}',
'if(cond)stmt;else stmt;': 'if(cond)stmt;else stmt',
'if(cond){stmt;}else stmt;': 'if(cond){stmt}else stmt',
'if(cond){stmt;}else{stmt;}': 'if(cond){stmt}else{stmt}',
'if(cond){stmt;}else if(cond)for(;;)stmt;': 'if(cond){stmt}else if(cond)for(;;)stmt',
'if(cond){stmt;}else if(cond);': 'if(cond){stmt}else if(cond);',
'do ; while(cond);': 'do;while(cond)',
'while(cond);': 'while(cond);'
}

@@ -796,0 +803,0 @@ }, {

Sorry, the diff of this file is too big to display

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