Skip to content

Commit 84e7d5a

Browse files
committed
A couple of code style tweaks
1 parent 0f749b2 commit 84e7d5a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ module.exports = function (content) {
2121
preserveWhitespace: false,
2222
});
2323

24-
const transpileCode = `var render = function (${options.functional ? '_h,_vm' : ''}) { ${compiled.render} };`;
24+
const transpileCode = `var render = function (${options.functional ? '_h, _vm' : ''}) { ${compiled.render} };`;
2525

2626
const transpileOptions = {
2727
transforms: {
2828
stripWithFunctional: !!options.functional || false,
29-
}
29+
},
3030
};
3131

3232
component = `${transpile(transpileCode, transpileOptions)}\n`;

{

Whitespace-only changes.

0 commit comments

Comments
 (0)