You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 10, 2018. It is now read-only.
I have a problem when I try to use something like
<%- null_var || "some string" %>
in my .jst.ejs template, it evaluate as
"null" || "some string"
which always return"null"
stringSo it's work If I do
<%- (null_var || "some string) %>
or<%- "%s", null || "some string" %>
it should be bugPleas fix this for clean code, Thanks :)
The text was updated successfully, but these errors were encountered: