ship-gis/node_modules/@babel/eslint-parser/lib/convert/convertComments.cjs

11 lines
298 B
JavaScript
Raw Normal View 히스토리

2026-01-22 09:14:01 +09:00
"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