urdu ه standardization
This commit is contained in:
parent
e41b335821
commit
aae06148ad
|
@ -18,6 +18,8 @@ const testPairs = [
|
||||||
["حتیٰ", "حتیٰ"],
|
["حتیٰ", "حتیٰ"],
|
||||||
["چېرته دى؟", "چېرته دی؟"],
|
["چېرته دى؟", "چېرته دی؟"],
|
||||||
["آب", "آب"],
|
["آب", "آب"],
|
||||||
|
["مفہوم", "مفهوم"],
|
||||||
|
["مفھوم", "مفهوم"],
|
||||||
["راکوي؛", "راکوي؛"],
|
["راکوي؛", "راکوي؛"],
|
||||||
["راکوي!", "راکوي!"],
|
["راکوي!", "راکوي!"],
|
||||||
["راکوي.", "راکوي."],
|
["راکوي.", "راکوي."],
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
export function standardizePashto(input: string): string {
|
export function standardizePashto(input: string): string {
|
||||||
// Replace Arabic ى with Farsi ی
|
// Replace Arabic ى with Farsi ی
|
||||||
return input.replace(/\u0649/g, "\u06cc")
|
return input.replace(/\u0649/g, "\u06cc")
|
||||||
// Replace Urdu ہ and ه with ه
|
// Replace Urdu ہ and ھ with ه
|
||||||
.replace(/ہ|ه/g, "ه")
|
.replace(/ھ|ہ/g, "ه")
|
||||||
// Replace Arabic ك with ک
|
// Replace Arabic ك with ک
|
||||||
.replace(/\u0643/g, "\u06a9")
|
.replace(/\u0643/g, "\u06a9")
|
||||||
// Replace Farsi گ with ګ
|
// Replace Farsi گ with ګ
|
||||||
|
|
Loading…
Reference in New Issue