Update .bashrc
[dotfiles/.git] / lib / visitors / delete.js
1 'use strict';
2
3 module.exports = strikethrough;
4
5 function strikethrough(node) {
6   return '~~' + this.all(node).join('') + '~~';
7 }