source: trip-planner-front/node_modules/@babel/types/lib/comments/addComment.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: 332 bytes
Line 
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.default = addComment;
7
8var _addComments = require("./addComments");
9
10function addComment(node, type, content, line) {
11 return (0, _addComments.default)(node, type, [{
12 type: line ? "CommentLine" : "CommentBlock",
13 value: content
14 }]);
15}
Note: See TracBrowser for help on using the repository browser.