generated from dellevin/template
1
This commit is contained in:
10
node_modules/@babel/eslint-parser/lib/convert/convertComments.cjs
generated
vendored
Normal file
10
node_modules/@babel/eslint-parser/lib/convert/convertComments.cjs
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
"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
|
||||
Reference in New Issue
Block a user