Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
personalizedrefrigerator committed Oct 7, 2024
2 parents 35e5178 + d1ac3d4 commit d057a7a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/lib/utils/replaceUnsupportedCharacters.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import replaceUnsupportedCharacters from './replaceUnsupportedCharacters';

describe('replaceUnsupportedCharacters', () => {
test('should replace NULL characters', () => {
expect(replaceUnsupportedCharacters('Test\x00...')).toBe('Test...');
expect(replaceUnsupportedCharacters('\x00Test\x00...')).toBe('�Test�...');
expect(replaceUnsupportedCharacters('Test\x00...')).toBe('Test\uFFFD...');
expect(replaceUnsupportedCharacters('\x00Test\x00...')).toBe('\uFFFDTest\uFFFD...');
});
});
8 changes: 8 additions & 0 deletions readme/cla_signatures.json
Original file line number Diff line number Diff line change
Expand Up @@ -1535,6 +1535,14 @@
"created_at": "2024-09-20T13:39:34Z",
"repoId": 79162682,
"pullRequestNo": 11088
},
{
"name": "moorage",
"id": 8590,
"comment_id": 2395215602,
"created_at": "2024-10-05T22:34:34Z",
"repoId": 79162682,
"pullRequestNo": 11153
}
]
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es2015",
"target": "es2017",
//"lib": ["es2015", "es2020.string", "dom", "dom.iterable"],
"alwaysStrict": true,
"forceConsistentCasingInFileNames": true,
Expand Down

0 comments on commit d057a7a

Please sign in to comment.