Skip to content

Commit

Permalink
Simplify further
Browse files Browse the repository at this point in the history
  • Loading branch information
dcyriller committed May 28, 2021
1 parent afb8941 commit ba3051e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/language-handlebars/printer-glimmer.js
Expand Up @@ -419,10 +419,7 @@ function print(path, options, print) {
/* ElementNode print helpers */

function sortByLoc(a, b) {
return (
a.loc.start.line - b.loc.start.line ||
a.loc.start.column - b.loc.start.column
);
return locStart(a) - locStart(b);
}

function printStartingTag(path, print) {
Expand Down

0 comments on commit ba3051e

Please sign in to comment.