Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jayphelps/es6-module-transpiler-issue-example


https://github.com/jayphelps/es6-module-transpiler-issue-example

Last synced: 21 days ago
JSON representation

Awesome Lists containing this project

README

        

# es6-module-transpiler-issue-example

When run, this will output the comment malformed. For some reason consuming one of the forward slashes in the comment.

```javascript
define("input",
["exports"],
function(__exports__) {
"use strict";
function foo() {

}

__exports__.foo = foo;/comment
});
```