Files
30-seconds-of-code/node_modules/hast-util-to-html/lib/comment.js
2019-08-20 15:52:05 +02:00

9 lines
143 B
JavaScript

'use strict'
module.exports = comment
/* Stringify a comment `node`. */
function comment(ctx, node) {
return '<!--' + node.value + '-->'
}