[ Index ] |
|
Code source de CMS made simple 1.0.5 |
1 if (!String.prototype.endsWith) { 2 String.prototype.endsWith = function(suffix) { 3 var startPos = this.length - suffix.length; 4 if (startPos < 0) { 5 return false; 6 } 7 return (this.lastIndexOf(suffix, startPos) == startPos); 8 }; 9 }
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Tue Apr 3 18:50:37 2007 | par Balluche grâce à PHPXref 0.7 |