convertComments.cjs 298 B

12345678910
  1. "use strict";
  2. module.exports = function convertComments(comments) {
  3. for (const comment of comments) {
  4. comment.type = comment.type === "CommentBlock" ? "Block" : "Line";
  5. comment.range || (comment.range = [comment.start, comment.end]);
  6. }
  7. };
  8. //# sourceMappingURL=convertComments.cjs.map