Skip to content

supanpanCn/displace-comments

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

displace-comments

提取文本中的注释,并将注释替换为等价的空格

支持的注释

  • html注释
  • JavaScript单行、多行注释和注解

安装

npm i displace-comments

使用

interface IdisplaceComments{
  (code:string,m?:{
    start: string;
    end: string | RegExp;
    type?: "single" | "multiple" | "html" | "custom";
  }):{
    strippedCode: string;
    detail: DetailItem[];
  }
}
import displaceComments from 'displace-comments'
const code = ''
displaceComments(code[,options])

示例

见test.js的执行结果

License

MIT

About

提取文本中的注释,并将注释替换为等价的空格

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published