1
0
mirror of synced 2025-12-30 03:01:36 -05:00

Merge pull request #20510 from github/repo-sync

repo sync
This commit is contained in:
Octomerger Bot
2022-09-09 08:32:24 -04:00
committed by GitHub

View File

@@ -72,8 +72,8 @@ export class Tokens extends Array {
}
diff(otherTokens) {
const a = this.onlyText()
const b = otherTokens.onlyText()
const a = this.onlyText().sort()
const b = otherTokens.onlyText().sort()
const diff = getGitDiff(a.join('\n'), b.join('\n'))