Javascript-форум (https://javascript.ru/forum/)
-   Ваши сайты и скрипты (https://javascript.ru/forum/project/)
-   -   Может кто какие замечания сделает или поможет дописать format (https://javascript.ru/forum/project/37431-mozhet-kto-kakie-zamechaniya-sdelaet-ili-pomozhet-dopisat-format.html)

qwerty-клавиатура 22.04.2013 04:54

(function() {
    var specialChars = {'<': 'lt', '>': 'gt', '&': 'amp'},
        re = new RegExp('[' + Object.keys(specialChars).join('') + ']', 'g');
        
    String.prototype.escape = function() {
        return this.replace(re, function(match) {
            return '&' + specialChars[match] + ';';
        });
    }
})();


По идеи быстрее должна быть


Часовой пояс GMT +3, время: 11:55.