luna_ocr / node_modules /@babel /eslint-parser /lib /convert /convertComments.cjs
veela4's picture
Upload folder using huggingface_hub
bf237c2 verified
"use strict";
module.exports = function convertComments(comments) {
for (const comment of comments) {
comment.type = comment.type === "CommentBlock" ? "Block" : "Line";
comment.range || (comment.range = [comment.start, comment.end]);
}
};
//# sourceMappingURL=convertComments.cjs.map