delete.js 149 B

123456789
  1. 'use strict'
  2. module.exports = strikethrough
  3. var all = require('../all')
  4. function strikethrough(h, node) {
  5. return h(node, 'del', all(h, node))
  6. }