root.js 174 B

123456789
  1. 'use strict';
  2. module.exports = root;
  3. /* Stringify a root.
  4. * Adds a final newline to ensure valid POSIX files. */
  5. function root(node) {
  6. return this.block(node) + '\n';
  7. }