You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
387 B
17 lines
387 B
2 years ago
|
import assertString from './util/assertString';
|
||
|
import isBase64 from './isBase64';
|
||
|
export default function isJWT(str) {
|
||
|
assertString(str);
|
||
|
var dotSplit = str.split('.');
|
||
|
var len = dotSplit.length;
|
||
|
|
||
|
if (len > 3 || len < 2) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
return dotSplit.reduce(function (acc, currElem) {
|
||
|
return acc && isBase64(currElem, {
|
||
|
urlSafe: true
|
||
|
});
|
||
|
}, true);
|
||
|
}
|