dashboard
repositories
filestore
activity
search
login
刘苏义
/
ruoyi-api
forked from
ard/ruoyi-api
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
修改任务创建者为实际姓名
‘liusuyi’
2023-07-28
d50a254cae5e723cd41329498e0c6d4385a37593
[~liusuyi/ruoyi-api.git]
/
ruoyi-ui
/
node_modules
/
strict-uri-encode
/
index.js
1
2
3
4
5
6
'use strict';
module.exports = function (str) {
return encodeURIComponent(str).replace(/[!'()*]/g, function (c) {
return '%' + c.charCodeAt(0).toString(16).toUpperCase();
});
};