-
Notifications
You must be signed in to change notification settings - Fork 576
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: develop to master by xutao (#1244)
* chore: adjust download request hints (#1061) * chore: adjust download hints * chore: adjust download hints * chore: some optimized (#1062) - add head method warning - adjust PR githubCi * chore(develop): remove cleanbucket workflow (#1094) * feat(develop): ios dingding add default content-type (#1070) * feat(develop): ios dingding add default content-type * feat(develop): ios dingding add default content-type * feat(develop): ios dingding add default content-type * feat(develop): ios dingding add default content-type * feat(develop): ios dingding add default content-type * feat(develop): ios dingding add default content-type * chore: remove remove redundant judgments * resolve master and develop conflict (#1122) Co-authored-by: xt01102058 <xt01102058@alibaba-inc.com> * resolve master and develop conflict * chore: marge develop to master * test: fix test ConnectionTimeoutError bug * chore: add put() timeout unit * chore: optimize the translation of readme.md ResponseTimeoutError --------- Co-authored-by: moca_tao7 <moca_tao7@foxmail.com> Co-authored-by: xt01102058 <xt01102058@alibaba-inc.com> Co-authored-by: PeterRao <peizerao@gmail.com> Co-authored-by: csg01123119 <csg01123119@alibaba-inc.com>
- Loading branch information
1 parent
c1f06c5
commit 13a2691
Showing
12 changed files
with
75 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export declare function checkEnv(msg: string): void; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.checkEnv = void 0; | ||
function checkEnv(msg) { | ||
if (process.browser) { | ||
console.warn(msg); | ||
} | ||
} | ||
exports.checkEnv = checkEnv; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
export function checkEnv(msg: string) { | ||
if (process.browser) { | ||
console.warn(msg); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export declare function isDingTalk(): boolean; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.isDingTalk = void 0; | ||
function isDingTalk() { | ||
if (process.browser && window.navigator.userAgent.toLowerCase().includes('aliapp(dingtalk')) { | ||
return true; | ||
} | ||
return false; | ||
} | ||
exports.isDingTalk = isDingTalk; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export function isDingTalk() { | ||
if (process.browser && window.navigator.userAgent.toLowerCase().includes('aliapp(dingtalk')) { | ||
return true; | ||
} | ||
return false; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters