mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 04:19:30 +08:00
15 lines
No EOL
332 B
Text
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
|
|
}]);
|
|
} |