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