const doctrine = require('doctrine')const getJsHeadComment = (content) => {if (content.startsWith('/**')) {const comment = content.match(/^[\/\*\*]([\s\S]*?[\@rulesName][\s\S]*?)\*\//)if (comment) {return comment[0]}}return ""}const parseCommentToAst = (comment) => {const ast = doctrine.parse(comment, { unwrap: true })let docInfo = {}ast.tags.forEach(item => {docInfo[item.title] = item.description})return docInfo}const parseComment = (content) => {const comment = getJsHeadComment(content)if(comment){return parseCommentToAst(comment)} else {return ""}}module.exports = {parseComment}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。