fixed init escape_() type checking

This commit is contained in:
Davor Spasovski 2012-05-31 12:11:36 -07:00
Родитель d820e6283b
Коммит 657fbb9474
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -95,7 +95,7 @@ function _pd(func) {
function escape_(s) {
if (typeof s === undefined) {
if (typeof s === 'undefined') {
return;
}
return s.replace(/&/g, '&amp;').replace(/>/g, '&gt;').replace(/</g, '&lt;')