comment.js 143 B

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