add e, z, y bytes
This commit is contained in:
parent
03497a3fb9
commit
5cfc7de0f7
1 changed files with 2 additions and 2 deletions
|
|
@ -204,12 +204,12 @@ export function saferKorean(input: string): string {
|
||||||
.replace(/[ㄱ-ㅎㄲㄸㅃㅆㅉ]/g, (char: string) => ChoseongMap[char as keyof typeof ChoseongMap])
|
.replace(/[ㄱ-ㅎㄲㄸㅃㅆㅉ]/g, (char: string) => ChoseongMap[char as keyof typeof ChoseongMap])
|
||||||
|
|
||||||
// Process number, unit
|
// Process number, unit
|
||||||
.replace(/(\+\d+[\s\-]+)?([\d\-]+)/g, (_, prefix: string, phone: string) => {
|
.replace(/(\+\d+[\s\-]+)?([\d\-]+)/g, (_, prefix: string | undefined, phone: string) => {
|
||||||
const all = (prefix ?? "") + phone;
|
const all = (prefix ?? "") + phone;
|
||||||
if (!phone.includes("-")) return all;
|
if (!phone.includes("-")) return all;
|
||||||
return PhoneNumberKorean.convert(all);
|
return PhoneNumberKorean.convert(all);
|
||||||
})
|
})
|
||||||
.replace(/([\d,]+)([kKMmgGtTpP][iI]?)[bB]/g, (_, num: string, mod: string) => {
|
.replace(/([\d,]+)([kKMmgGtTpPeEzZyY][iI]?)[bB]/g, (_, num: string, mod: string) => {
|
||||||
// 10kib => 십키비바이트
|
// 10kib => 십키비바이트
|
||||||
num = IntegerKorean.convertFromString(num);
|
num = IntegerKorean.convertFromString(num);
|
||||||
mod = SIPrefix[mod.toLowerCase() as keyof typeof SIPrefix];
|
mod = SIPrefix[mod.toLowerCase() as keyof typeof SIPrefix];
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue