flow-mapping-item.js 501 B

123456789
  1. "use strict";
  2. exports.__esModule = true;
  3. var tslib_1 = require("tslib");
  4. var leading_comment_attachable_1 = require("./leading-comment-attachable");
  5. var node_1 = require("./node");
  6. function createFlowMappingItem(position, key, value) {
  7. return tslib_1.__assign(tslib_1.__assign(tslib_1.__assign({}, node_1.createNode("flowMappingItem", position)), leading_comment_attachable_1.createLeadingCommentAttachable()), { children: [key, value] });
  8. }
  9. exports.createFlowMappingItem = createFlowMappingItem;