source: trip-planner-front/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/node_modules/@babel/types/lib/comments/addComment.js@ e29cc2e

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

primeNG components

  • 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.