fix: 微信登录补充保存username和role
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Agent
2026-04-04 07:35:21 +00:00
parent 756444ef2b
commit d12eea7693
10597 changed files with 817047 additions and 3 deletions

30
node_modules/licia/ltrim.js generated vendored Normal file
View File

@@ -0,0 +1,30 @@
var regSpace = /^\s+/;
exports = function(str, chars) {
if (chars == null) {
if (str.trimLeft) {
return str.trimLeft();
}
return str.replace(regSpace, '');
}
var start = 0;
var len = str.length;
var charLen = chars.length;
var found = true;
var i;
var c;
while (found && start < len) {
found = false;
i = -1;
c = str.charAt(start);
while (++i < charLen) {
if (c === chars[i]) {
found = true;
start++;
break;
}
}
}
return start >= len ? '' : str.substr(start, len);
};
module.exports = exports;