Skip to content

Commit

Permalink
style(lint): fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
kollhof committed Mar 2, 2020
1 parent bfa5e9a commit 2101be4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/transform/string.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import {templateElement, templateLiteral, taggedTemplateExpression} from '@babel/types';
import {
templateElement, templateLiteral, taggedTemplateExpression
} from '@babel/types';


export const transform_string = (node, {transform})=> {
Expand All @@ -8,7 +10,6 @@ export const transform_string = (node, {transform})=> {
);

if (node.tag) {

return taggedTemplateExpression(transform(node.tag), templ_str);
}

Expand Down

0 comments on commit 2101be4

Please sign in to comment.