1 Star 0 Fork 0

聪小陈/function

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
compressCss.js 430 Bytes
一键复制 编辑 原始数据 按行查看 历史
聪小陈 提交于 2018-03-22 10:58 . 提交代码
/**
* @description 压缩CSS样式代码
* @author 未知
*/
function compressCss (s) {//压缩代码
s = s.replace(/\/\*(.|\n)*?\*\//g, ""); //删除注释
s = s.replace(/\s*([\{\}\:\;\,])\s*/g, "$1");
s = s.replace(/\,[\s\.\#\d]*\{/g, "{"); //容错处理
s = s.replace(/;\s*;/g, ";"); //清除连续分号
s = s.match(/^\s*(\S+(\s+\S+)*)\s*$/); //去掉首尾空白
return (s == null) ? "" : s[1];
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/congxiaochen/function.git
git@gitee.com:congxiaochen/function.git
congxiaochen
function
function
master

搜索帮助