12345678910 |
- "use strict";
- exports.__esModule = true;
- var tslib_1 = require("tslib");
- var end_comment_attachable_1 = require("./end-comment-attachable");
- var node_1 = require("./node");
- var trailing_comment_attachable_1 = require("./trailing-comment-attachable");
- function createMappingKey(position, content) {
- return tslib_1.__assign(tslib_1.__assign(tslib_1.__assign(tslib_1.__assign({}, node_1.createNode("mappingKey", position)), trailing_comment_attachable_1.createTrailingCommentAttachable()), end_comment_attachable_1.createEndCommentAttachable()), { children: !content ? [] : [content] });
- }
- exports.createMappingKey = createMappingKey;
|