Signed-off-by: 吴文峰 <kevin@lmve.net>

This commit is contained in:
2026-04-17 16:41:05 +08:00
parent 5146e98479
commit e6eeae6eb8
4173 changed files with 0 additions and 928730 deletions
@@ -1,13 +0,0 @@
uni.addInterceptor({
returnValue (res) {
if (!(!!res && (typeof res === "object" || typeof res === "function") && typeof res.then === "function")) {
return res;
}
return new Promise((resolve, reject) => {
res.then((res) => {
if (!res) return resolve(res)
return res[0] ? reject(res[0]) : resolve(res[1])
});
});
},
});