We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2b3975 commit eadb138Copy full SHA for eadb138
.prettierignore
@@ -1,4 +1,4 @@
1
dist
2
/index.js
3
/index.d.ts
4
-/index.node.js
+/index.node.js
src/authorization/utils.ts
@@ -95,12 +95,10 @@ export const cancelAxiosRequestAndMakeFetch = (
95
};
96
97
98
-
99
export const validateTokenTime = (expTime: number): boolean => {
100
const isValid = expTime < ONE_MINUTE;
101
return isValid;
102
103
export const isEmail = (email: string): boolean => {
104
return EMAIL_REGEX.test(email);
105
106
0 commit comments