@mentor-apm/react-sortable-tree
Version:
Drag-and-drop sortable component for nested data and hierarchies
13 lines (12 loc) • 338 B
JavaScript
module.exports = function convertComments(comments) {
for (const comment of comments) {
if (comment.type === "CommentBlock") {
comment.type = "Block";
} else if (comment.type === "CommentLine") {
comment.type = "Line";
}
if (!comment.range) {
comment.range = [comment.start, comment.end];
}
}
};