Skip to content

aalpgiray/tr-TR-toLocaleLowerCase-and-toLocaleUpperCase

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Problem

The issue is letter I and i is different in Turkish but as we all know that is not the case in english. And any programing language is desinged English in mind. Therefore, we need this fix to become how ecmascript should work or better form of this must.

Getting started.

Place the file before other scripts

Turkish toLocaleLowerCase

This fixes the issue with "I" becoming "i" when toLocaleLowerCase called upon.

Usage

var text = "İstanbul";
text.toLocaleLowerCase("tr-TR"); // istanbul

Turkish toLocaleUpperCase

This fixes the issue with "i" becoming "I" when toLocaleUpperCase called upon.

Usage

var text = "İstanbul";
text.toLocaleUpperCase("tr-TR"); // İSTANBUL

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published