convertComments.cjs 385 Bytes
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];
    }
  }
};

//# sourceMappingURL=convertComments.cjs.map