-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MM-46] Fix polish characters encoding
- Loading branch information
Michał Skwara
committed
Jul 15, 2023
1 parent
36ba273
commit 0eb714a
Showing
4 changed files
with
7 additions
and
14 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
// Taken from https://github.com/expressjs/multer/issues/1104#issuecomment-1152987772 | ||
// TODO Maybe this PR will fix the multer issue: https://github.com/expressjs/multer/pull/1210 | ||
|
||
export default (name: string): string => | ||
Buffer.from(name, 'latin1').toString('utf8'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
import removeAccents from 'remove-accents'; | ||
import parseToUTF8 from './parseToUTF8'; | ||
|
||
export default (name: string) => removeAccents(name); | ||
export default (name: string): string => parseToUTF8(name); |