gobuffalo/velvet

View on GitHub
unless_helper.go

Summary

Maintainability
A
0 mins
Test Coverage
package velvet

import "html/template"

func unlessHelper(conditional bool, help HelperContext) (template.HTML, error) {
    return ifHelper(!conditional, help)
}