"use strict";

Object.defineProperty(exports, "__esModule", {
  value: true
});
exports.default = isRevocableSession;
/**
 * @flow
 */

function isRevocableSession(token /*: string*/) /*: boolean*/{
  return token.indexOf('r:') > -1;
}