.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / remark-stringify / lib / visitors / root.js
1 'use strict';
2
3 module.exports = root;
4
5 /* Stringify a root.
6  * Adds a final newline to ensure valid POSIX files. */
7 function root(node) {
8   return this.block(node) + '\n';
9 }