UNPKG

332 BJavaScriptView Raw
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}
\No newline at end of file