This commit is contained in:
2026-03-03 15:23:00 +00:00
parent 5e3726de39
commit 8e223bfbec
3689 changed files with 955330 additions and 1011 deletions

15
node_modules/validator/es/lib/isJWT.js generated vendored Normal file
View File

@@ -0,0 +1,15 @@
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) {
return false;
}
return dotSplit.reduce(function (acc, currElem) {
return acc && isBase64(currElem, {
urlSafe: true
});
}, true);
}