UNPKG
@vizmo/parse
Version:
latest (7.1.2-1)
7.1.2-1
6.1.1-2
6.1.1-1
5.3.0-1
4.0.1-1
Parse JavaScript SDK
parseplatform.org
parse-community/Parse-SDK-JS
@vizmo/parse
/
lib
/
node
/
isRevocableSession.js
9 lines
(8 loc)
•
191 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
default
= isRevocableSession;
function
isRevocableSession
(
token
) {
return
token.
indexOf
(
'r:'
) > -
1
; }