Your IP : 216.73.216.52


Current Path : /proc/thread-self/root/var/www/recommendations/www/node_modules/validator/es/lib/
Upload File :
Current File : //proc/thread-self/root/var/www/recommendations/www/node_modules/validator/es/lib/isJWT.js

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);
}