Skip to content

Commit 12790ca

Browse files
committed
Cleanup of quotes
1 parent 750e985 commit 12790ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/transformer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ function transformer(args, body, isAsync, isGenerator, filename) {
103103
const TO_RIGHT = 100;
104104

105105
let internStateValiable = undefined;
106-
let tmpname = "VM2_INTERNAL_TMPNAME";
106+
let tmpname = 'VM2_INTERNAL_TMPNAME';
107107

108108
acornWalkFull(ast, (node, state, type) => {
109109
if (type === 'Function') {
@@ -158,7 +158,7 @@ function transformer(args, body, isAsync, isGenerator, filename) {
158158
internStateValiable = node;
159159
}
160160
} else if (node.name.startsWith(tmpname)) {
161-
tmpname = node.name + "_UNIQUE";
161+
tmpname = node.name + '_UNIQUE';
162162
}
163163
} else if (nodeType === 'ImportExpression') {
164164
insertions.push({

0 commit comments

Comments
 (0)