isRevocableSession.js 235 B

12345678910111213
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = isRevocableSession;
  6. /**
  7. * @flow
  8. */
  9. function isRevocableSession(token /*: string*/) /*: boolean*/{
  10. return token.indexOf('r:') > -1;
  11. }