Skip to content

Commit

Permalink
Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
ngtr6788 committed Dec 22, 2023
1 parent 5a10df3 commit cd681eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,9 @@ export const javascript_visitors_runes = {
id = property.value.left;
initial = property.value.right;
}
initial = initial ? /** @type {import('estree').Expression} */ (visit(initial)) : undefined;
initial = initial
? /** @type {import('estree').Expression} */ (visit(initial))
: undefined;

assert.equal(id.type, 'Identifier');

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { test } from '../../test';

export default test({
html: `<p>5</p><p>5</p><p>25</p><p>65</p>`,
html: `<p>5</p><p>5</p><p>25</p><p>65</p>`
});

0 comments on commit cd681eb

Please sign in to comment.