UNPKG

comindware.core.ui

Version:

Comindware Core UI provides the basic components like editors, lists, dropdowns, popups that we so desperately need while creating Marionette-based single-page applications.

12 lines (10 loc) 329 B
import { htmlHelpers } from '../index'; export default function(text, fragment) { if (!text) { return ''; } if (!fragment) { return new Handlebars.SafeString(Handlebars.escapeExpression(text)); } return new Handlebars.SafeString(htmlHelpers.highlightText(text, fragment, true)); }