File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -54,9 +54,9 @@ function handleIncomingSourceMap (originalCode) {
54
54
55
55
function applyUnassertWithSourceMap ( code , filepath ) {
56
56
var ast = acorn . parse ( code , {
57
- sourceType : 'module' ,
58
- locations : true ,
59
- allowHashBang : true
57
+ sourceType : 'module' ,
58
+ locations : true ,
59
+ allowHashBang : true
60
60
} ) ;
61
61
var inMap = handleIncomingSourceMap ( code ) ;
62
62
var instrumented = escodegen . generate ( unassert ( ast ) , {
@@ -75,8 +75,8 @@ function applyUnassertWithSourceMap (code, filepath) {
75
75
76
76
function applyUnassertWithoutSourceMap ( code ) {
77
77
var ast = acorn . parse ( code , {
78
- sourceType : 'module' ,
79
- allowHashBang : true
78
+ sourceType : 'module' ,
79
+ allowHashBang : true
80
80
} ) ;
81
81
return escodegen . generate ( unassert ( ast ) ) ;
82
82
}
You can’t perform that action at this time.
0 commit comments