7 lines
180 B
JavaScript
7 lines
180 B
JavaScript
|
import { helper } from '@ember/component/helper';
|
||
|
import { htmlSafe } from '@ember/template';
|
||
|
|
||
|
export default helper(function markAsSafeHtml([html]) {
|
||
|
return htmlSafe(html);
|
||
|
});
|