UNPKG

doma

Version:

Parse an HTML string into `DocumentFragment` or one `Element`, in a few bytes (in browser)

6 lines (5 loc) 151 B
declare const doma: { (html: string): DocumentFragment; one<T extends Element = Element>(html: string): T | undefined; }; export default doma;