Skip to content

Commit

Permalink
fix(parser): CharList.toString 메소드 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hahnlee committed May 16, 2024
1 parent fd04284 commit 8530a84
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/parser/src/models/char-list.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,8 @@ export class CharList {
extendedControls() {
return this.chars.filter((char) => char instanceof ExtendedControl)
}

toString() {
return this.chars.map((char) => char.toString()).join('')
}
}

0 comments on commit 8530a84

Please sign in to comment.