can
Version:
MIT-licensed, client-side, JavaScript framework that makes building rich web applications easy.
23 lines (15 loc) • 629 B
Markdown
4
`{{#unless key}}BLOCK{{/unless}}`
Render the block of text if the key's value is falsey.
{can.stache.key} key A key that references a value within the current or parent
context. If the value is a function or can.compute, the function's
return value is used.
{can.stache} BLOCK A template that is rendered
if the `key`'s value is falsey.
The `unless` helper evaluates the inverse of the value
of the key and renders the block between the helper and the slash.
{{#unless expr}}
// unless
{{/unless}}
can.stache.helpers.unless {{#unless key}}
can.stache.htags