delete.js 129 B

1234567
  1. 'use strict';
  2. module.exports = strikethrough;
  3. function strikethrough(node) {
  4. return '~~' + this.all(node).join('') + '~~';
  5. }