Socket
Socket
Sign inDemoInstall

es3ify

Package Overview
Dependencies
6
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.2 to 0.1.3

.travis.yml

3

index.js

@@ -125,3 +125,6 @@ var Syntax = require('esprima-fb').Syntax;

module.exports = process;
module.exports.isReserved = function(word) {
return reservedDict.hasOwnProperty(word) ? !!reservedDict[word] : false;
};
module.exports.transform = transform;
module.exports.visitorList = visitorList;
{
"name": "es3ify",
"version": "0.1.2",
"version": "0.1.3",
"description": "Browserify transform to convert ES5 syntax to be ES3-compatible.",

@@ -11,2 +11,5 @@ "main": "index.js",

},
"devDependencies": {
"jasmine-node": "~1.13.1"
},
"repository": {

@@ -16,2 +19,5 @@ "type": "git",

},
"scripts": {
"test": "jasmine-node spec"
},
"homepage": "https://github.com/spicyj/es3ify",

@@ -18,0 +24,0 @@ "author": {

@@ -5,3 +5,3 @@ # es3ify

``` javascript
```javascript
// In

@@ -15,1 +15,8 @@ var x = {class: 2,};

```
Run tests with:
```sh
npm install -g jasmine-node
jasmine-node spec
```
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