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

27
node_modules/licia/waterfall.js generated vendored Normal file
View File

@@ -0,0 +1,27 @@
var noop = require('./noop');
var nextTick = require('./nextTick');
var restArgs = require('./restArgs');
exports = function(tasks, cb) {
cb = cb || noop;
var current = 0;
var taskCb = restArgs(function(err, args) {
if (++current >= tasks.length || err) {
args.unshift(err);
nextTick(function() {
cb.apply(null, args);
});
} else {
args.push(taskCb);
tasks[current].apply(null, args);
}
});
if (tasks.length) {
tasks[0](taskCb);
} else {
nextTick(function() {
cb();
});
}
};
module.exports = exports;