Update .bashrc
[dotfiles/.git] / lib / visitors / html.js
1 'use strict';
2
3 module.exports = html;
4
5 function html(node) {
6   return node.value;
7 }