All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
11 lines
132 B
JavaScript
11 lines
132 B
JavaScript
module.exports = html
|
|
html.peek = htmlPeek
|
|
|
|
function html(node) {
|
|
return node.value || ''
|
|
}
|
|
|
|
function htmlPeek() {
|
|
return '<'
|
|
}
|