当前位置:网站首页>去掉js代码文件所有注释
去掉js代码文件所有注释
2022-08-04 08:50:00 【yibucuo】
- 先把目标文件内容声明一个script变量如下
var script = `.......这里放入js代码内容.......`
- 执行下面js代码
var reg = /("([^\\\"]*(\\.)?)*")|('([^\\\']*(\\.)?)*')|(\/{2,}.*?(\r|\n|$))|(\/\*(\n|.)*?\*\/)/g;
var c = script.replace(reg, function(word) {
return /^\/{2,}/.test(word) || /^\/\*/.test(word) ? "" : word;
});
console.log(c)
- 在浏览器输入c,打印后,右键选择Copy string contents即可
边栏推荐
猜你喜欢
leetcode 22.7.31(1)两数之和 (2)整数除法
Cross-species regulatory sequence activity prediction
inject() can only be used inside setup() or functional components.
【电脑录制屏】如何使用bandicam录游戏 设置图文教程
布局管理器
IDEA引入类报错:“The file size (2.59 MB) exceeds the configured limit (2.56MB)
反序列化漏洞
.NET深入解析LINQ框架(五:IQueryable、IQueryProvider接口详解)
ShowMeAI —— Show u 三连
推荐几种可以直接翻译PDF英文文献的方法
随机推荐
unittest使用简述
Linux之Redis 缓存雪崩,击穿,穿透
华为设备配置VRRP与NQA联动监视上行链路
.NET深入解析LINQ框架(五:IQueryable、IQueryProvider接口详解)
研究性学习专题 3_LL(1)语法分析设计原理与实现
binder通信实现
IDEA引入类报错:“The file size (2.59 MB) exceeds the configured limit (2.56MB)
Shared_preload_libraries cause many syntaxes not supported
[NOI Simulation Competition] Paper Tiger Game (Game Theory SG Function, Long Chain Division)
最近的一些杂感-20220731
Thread类的基本使用。
How many assertion methods are commonly used in JMeter?
async - await
关于Oracle RAC 11g重建磁盘组的问题
线程和进程之间的区别
24.循环神经网络RNN
Explanation of spark operator
有坦荡的远方
设计信息录入界面,完成人员基本信息的录入工作,
Yolov5 replaces the backbone network of "Megvii Lightweight Convolutional Neural Network ShuffleNetv2"