1 Star 0 Fork 31

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

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
css-unicode-loader.js 332 Bytes
Copy Edit Raw Blame History
natiejun authored 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/lonelyxmas/orise-admin.git
git@gitee.com:lonelyxmas/orise-admin.git
lonelyxmas
orise-admin
奥升充电桩平台管理后台 orise-admin
master

Search