Urara-Blog/node_modules/.pnpm-store/v3/files/8f/25696b0c4c03be175622a57a753c18a717def12331e66cbe46ec14ba2dbd9c763604ea73b4239f22ea9591f633643c13c4f175388ac702a54851409d43eff8
2022-08-14 01:14:53 +08:00

15 lines
No EOL
332 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = addComment;
var _addComments = require("./addComments");
function addComment(node, type, content, line) {
return (0, _addComments.default)(node, type, [{
type: line ? "CommentLine" : "CommentBlock",
value: content
}]);
}