UNPKG

@playbooks/utils

Version:

A collection of utilities used for Playbooks.

14 lines (13 loc) 321 B
import { computeTailwind } from "@ehubbell/html"; import { convert } from "html-to-text"; const htmlToText = (data, options) => { return convert(data, options); }; const stripHtmlEntities = (data = "") => { return data.replace(/(<([^>]+)>)/gi, ""); }; export { computeTailwind, htmlToText, stripHtmlEntities };