mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-18 22:10:41 -07:00
fix: escape filter when input is undefined
This commit is contained in:
@@ -14,7 +14,7 @@ const unescapeMap = {
|
||||
}
|
||||
|
||||
function escape (str: string) {
|
||||
return String(str).replace(/&|<|>|"|'/g, m => escapeMap[m])
|
||||
return !!str ? String(str).replace(/&|<|>|"|'/g, m => escapeMap[m]) : ""
|
||||
}
|
||||
|
||||
function unescape (str: string) {
|
||||
|
||||
Reference in New Issue
Block a user