source: trip-planner-front/node_modules/@babel/types/lib/comments/addComments.js@ 59329aa

Last change on this file since 59329aa was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 437 bytes
RevLine 
[6a3a178]1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.default = addComments;
7
8function addComments(node, type, comments) {
9 if (!comments || !node) return node;
10 const key = `${type}Comments`;
11
12 if (node[key]) {
13 if (type === "leading") {
14 node[key] = comments.concat(node[key]);
15 } else {
16 node[key].push(...comments);
17 }
18 } else {
19 node[key] = comments;
20 }
21
22 return node;
23}
Note: See TracBrowser for help on using the repository browser.