Urara-Blog/node_modules/.pnpm-store/v3/files/ac/4b66f8519925df8c45aef8445809596c214895a35631708e547de7ceedb1d58dce7ef7e369c56d9773e150c5274ea126422eb26856458501222daac4dd7201
2022-08-14 01:14:53 +08:00

21 lines
290 B
Text

/**
* @typedef {import('mdast').HTML} HTML
* @typedef {import('../types.js').Handle} Handle
*/
html.peek = htmlPeek
/**
* @type {Handle}
* @param {HTML} node
*/
export function html(node) {
return node.value || ''
}
/**
* @type {Handle}
*/
function htmlPeek() {
return '<'
}