This is where they should be as far as ember is concerned. Note this is a huge commit and we should be really careful everything continues to work properly.
6 lines
164 B
JavaScript
6 lines
164 B
JavaScript
export function stringToHTML(string) {
|
|
const parser = new DOMParser();
|
|
const doc = parser.parseFromString(string, "text/html");
|
|
return doc.body.firstChild;
|
|
}
|