Socket
Socket
Sign inDemoInstall

traceur

Package Overview
Dependencies
Maintainers
2
Versions
110
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

traceur - npm Package Compare versions

Comparing version 0.0.19 to 0.0.20

src/node/require.js

4

package.json
{
"name": "traceur",
"version": "0.0.19",
"version": "0.0.20",
"description": "Experimental ES6 to ES5 compiler",

@@ -48,5 +48,5 @@ "keywords": [

"semver": "2.2.1",
"traceur": "0.0.18"
"traceur": "0.0.19"
},
"subdomain": "traceur"
}

@@ -69,3 +69,3 @@ // Copyright 2013 Traceur Authors.

var sourceFile = new SourceFile(options.filename, content);
var parser = new Parser(errorReporter, sourceFile);
var parser = new Parser(sourceFile, errorReporter);
var tree = parser.parseModule();

@@ -72,0 +72,0 @@ var transformer = new FromOptionsTransformer(errorReporter);

@@ -33,3 +33,3 @@ // Copyright 2013 Traceur Authors.

var sourceFile = new SourceFile(inputFilePath, contents);
var parser = new Parser(reporter, sourceFile);
var parser = new Parser(sourceFile, reporter);
var tree = parser.parseModule();

@@ -36,0 +36,0 @@ var moduleName = inputFilePath.replace(/\.js$/, '');

@@ -29,2 +29,5 @@ // Copyright 2012 Traceur Authors.

__proto__: traceur,
get require() {
return require('./require.js');
}
};

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

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

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