Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(lib): correct the concat method in TokenizedStringFragments
The concat method was not properly updating `this.fragments` because `Array.prototype.concat` does not modify the original array in place. Changed the implementation to use `push` with the spread operator to correctly merge fragments.
- Loading branch information