RSS Git Download  Clone
Raw Blame History 135B 6 lines
if (!String.prototype.reverse) {
    String.prototype.reverse = function () {
        return this.split('').reverse().join('')
    }
}