fixed init escape_() type checking
This commit is contained in:
Родитель
d820e6283b
Коммит
657fbb9474
|
@ -95,7 +95,7 @@ function _pd(func) {
|
|||
|
||||
|
||||
function escape_(s) {
|
||||
if (typeof s === undefined) {
|
||||
if (typeof s === 'undefined') {
|
||||
return;
|
||||
}
|
||||
return s.replace(/&/g, '&').replace(/>/g, '>').replace(/</g, '<')
|
||||
|
|
Загрузка…
Ссылка в новой задаче