root.js 332 B

123456789
  1. "use strict";
  2. exports.__esModule = true;
  3. var tslib_1 = require("tslib");
  4. var node_1 = require("./node");
  5. function createRoot(position, children, comments) {
  6. return tslib_1.__assign(tslib_1.__assign({}, node_1.createNode("root", position)), { children: children,
  7. comments: comments });
  8. }
  9. exports.createRoot = createRoot;