// Remove all HTML from a string import { strict as assert } from "assert"; import { stripHtml } from "../dist/string-strip-html.esm.js"; const someHtml = `

Title

Some text. `; assert.equal(stripHtml(someHtml).result, `Title\nSome text.`);