1 Star 0 Fork 31

memcacheon/奥升充电桩平台管理后台 orise-admin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
css-unicode-loader.js 332 Bytes
一键复制 编辑 原始数据 按行查看 历史
natiejun 提交于 2024-02-23 15:34 . V1.0.0
const UNICODE_MATCH_REG = /[^\x00-\xff]/g;
const CONTENT_MATCH_REG = /(?<!-)content\s*:\s*([^;\}]+)/g;
module.exports = function (source) {
source = source.replace(CONTENT_MATCH_REG, function (m, p1) {
return m.replace(UNICODE_MATCH_REG, function (m) {
return "\\" + m.charCodeAt(0).toString(16);
});
});
return source;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/memcacheon/orise-admin.git
git@gitee.com:memcacheon/orise-admin.git
memcacheon
orise-admin
奥升充电桩平台管理后台 orise-admin
master

搜索帮助