Changeset 5522 for lang/javascript/kanajs
- Timestamp:
- 01/26/08 01:58:41 (5 years ago)
- Location:
- lang/javascript/kanajs/trunk/src
- Files:
-
- 5 modified
-
toHankakuCase.js (modified) (1 diff)
-
toHankanaCase.js (modified) (1 diff)
-
toHirakanaCase.js (modified) (1 diff)
-
toKatakanaCase.js (modified) (1 diff)
-
toZenkakuCase.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lang/javascript/kanajs/trunk/src/toHankakuCase.js
r5514 r5522 1 1 String.prototype.toHankakuCase = function() 2 2 { 3 var i, c, a = [];3 var c, i = this.length, a = []; 4 4 5 for(i=this.length-1;0<=i;i--)5 while(i--) 6 6 { 7 7 c = a[i] = this.charCodeAt(i); -
lang/javascript/kanajs/trunk/src/toHankanaCase.js
r5514 r5522 16 16 0x30F2:0xFF66, 0x30F3:0xFF9D 17 17 }; 18 for(i=0,f=this.length;i<f; i++)18 for(i=0,f=this.length;i<f;) 19 19 { 20 c = this.charCodeAt(i );20 c = this.charCodeAt(i++); 21 21 switch(true) 22 22 { -
lang/javascript/kanajs/trunk/src/toHirakanaCase.js
r5514 r5522 1 1 String.prototype.toHirakanaCase = function() 2 2 { 3 var i, c, a = [];4 for(i=this.length-1;0<=i;i--)3 var c, i = this.length, a = []; 4 while(i--) 5 5 { 6 6 c = this.charCodeAt(i); -
lang/javascript/kanajs/trunk/src/toKatakanaCase.js
r5514 r5522 1 1 String.prototype.toKatakanaCase = function() 2 2 { 3 var i, c, a = [];4 for(i=this.length-1;0<=i;i--)3 var c, i = this.length, a = []; 4 while(i--) 5 5 { 6 6 c = this.charCodeAt(i); -
lang/javascript/kanajs/trunk/src/toZenkakuCase.js
r5514 r5522 1 1 String.prototype.toZenkakuCase = function() 2 2 { 3 var i, c, a = [];3 var c, i = this.length, a = []; 4 4 5 for(i=this.length-1;0<=i;i--)5 while(i--) 6 6 { 7 7 c = a[i] = this.charCodeAt(i);
![(please configure the [header_logo] section in trac.ini)](/share/chrome/site/your_project_logo.png)