diff options
| author | Javier Mendiara CaƱardo | 2013-03-18 19:18:30 +0100 |
|---|---|---|
| committer | James deBoer | 2013-03-20 11:41:14 -0700 |
| commit | bb5abe0e9ca37288cd2b2b16aba46f702d1243c0 (patch) | |
| tree | 486314bee245e8fd6f310dc920ee07a5dc56dc55 /src/Angular.js | |
| parent | 76c0ddfc0b0794c22da94be441b4e52bf9fdc0c9 (diff) | |
| download | angular.js-bb5abe0e9ca37288cd2b2b16aba46f702d1243c0.tar.bz2 | |
chore(Angular): remove superfluous fromCharCode function
Remove fromCharCode function as it was used only in two inner
functions in the code, and its functionality is achieved in several
other places by using String.fromCharCode
Breaks fromCharCode closure function, String.fromCharCode should be
used instead
Diffstat (limited to 'src/Angular.js')
| -rw-r--r-- | src/Angular.js | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/Angular.js b/src/Angular.js index 20c032c1..5177cf78 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -28,12 +28,12 @@ var uppercase = function(string){return isString(string) ? string.toUpperCase() var manualLowercase = function(s) { return isString(s) - ? s.replace(/[A-Z]/g, function(ch) {return fromCharCode(ch.charCodeAt(0) | 32);}) + ? s.replace(/[A-Z]/g, function(ch) {return String.fromCharCode(ch.charCodeAt(0) | 32);}) : s; }; var manualUppercase = function(s) { return isString(s) - ? s.replace(/[a-z]/g, function(ch) {return fromCharCode(ch.charCodeAt(0) & ~32);}) + ? s.replace(/[a-z]/g, function(ch) {return String.fromCharCode(ch.charCodeAt(0) & ~32);}) : s; }; @@ -46,8 +46,6 @@ if ('i' !== 'I'.toLowerCase()) { uppercase = manualUppercase; } -function fromCharCode(code) {return String.fromCharCode(code);} - var /** holds major version number for IE or NaN for real browsers */ msie = int((/msie (\d+)/.exec(lowercase(navigator.userAgent)) || [])[1]), |
