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

10 lines
149 B
JavaScript

'use strict'
module.exports = strikethrough
var all = require('../all')
function strikethrough(h, node) {
return h(node, 'del', all(h, node))
}