Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jayphelps/es6-module-transpiler-issue-example
- Owner: jayphelps
- Created: 2015-01-14T00:32:51.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-14T20:07:55.000Z (almost 10 years ago)
- Last Synced: 2023-03-22T22:37:16.848Z (over 1 year ago)
- Language: JavaScript
- Size: 148 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
});
```