UNPKG
html-dom-parser
Version:
latest (5.1.1)
5.1.1
5.1.0
5.0.13
5.0.12
5.0.11
5.0.10
5.0.9
5.0.8
5.0.7
5.0.6
5.0.5
5.0.4
5.0.3
5.0.2
5.0.1
5.0.0
4.0.1
4.0.0
3.1.7
3.1.6
3.1.5
3.1.4
3.1.3
3.1.2
3.1.1
3.1.0
3.0.1
3.0.0
2.0.0
1.2.0
1.1.1
1.1.0
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.5.0
0.4.0
0.3.1
0.3.0
0.2.3
0.2.2
0.2.1
0.2.0
0.1.3
0.1.2
0.1.1
0.1.0
0.0.2
0.0.1
HTML to DOM parser.
github.com/remarkablemark/html-dom-parser
remarkablemark/html-dom-parser
html-dom-parser
/
esm
/
server
/
html-to-dom.d.mts
9 lines
(6 loc)
•
189 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
import
type
{
ParserOptions
}
from
'htmlparser2'
;
import
type
{
DOMNode
}
from
'../types'
;
export
default
function
HTMLDOMParser
(
html
:
string
,
options
?:
ParserOptions
,
):
DOMNode
[];