diff options
| author | ST-DDT <[email protected]> | 2023-10-18 00:38:23 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-10-17 22:38:23 +0000 |
| commit | a1936938574f574ecc137d9f718a48a2256e49c9 (patch) | |
| tree | c1fa8569501a44494f70732f2ea70f039564673f /src/modules/internet | |
| parent | b8f31f606af880ddc3eb89b0837ef9ae49da1f99 (diff) | |
| download | faker-a1936938574f574ecc137d9f718a48a2256e49c9.tar.xz faker-a1936938574f574ecc137d9f718a48a2256e49c9.zip | |
infra(unicorn): escape-case (#2469)
Diffstat (limited to 'src/modules/internet')
| -rw-r--r-- | src/modules/internet/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/internet/index.ts b/src/modules/internet/index.ts index 947edfba..42d05c55 100644 --- a/src/modules/internet/index.ts +++ b/src/modules/internet/index.ts @@ -636,7 +636,7 @@ export class InternetModule { // First remove simple accents etc result = result .normalize('NFKD') //for example è decomposes to as e + ̀ - .replace(/[\u0300-\u036f]/g, ''); // removes combining marks + .replace(/[\u0300-\u036F]/g, ''); // removes combining marks result = [...result] .map((char) => { |
