Skip to content

Commit 0af739b

Browse files
committed
Fixing issue with coffeescript parsing.
1 parent d1c4224 commit 0af739b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/parser.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ module.exports = function (content) {
7474
var result
7575
if (type === 'script') {
7676
result =
77-
commentScript(content.slice(0, start)) +
78-
content.slice(start, end) +
79-
commentScript(content.slice(end))
77+
// commentScript(content.slice(0, start)) +
78+
content.slice(start, end)// +
79+
// commentScript(content.slice(end))
8080
} else {
8181
result = content.slice(start, end).trim()
8282
}

0 commit comments

Comments
 (0)