UNPKG
courtbot-engine
Version:
latest (1.6.13)
1.6.13
1.6.12
1.6.11
1.6.10
1.6.9
1.6.8
1.6.7
1.6.6
1.6.5
1.6.4
1.6.3
1.6.2
1.6.1
1.6.0
1.5.5
1.5.4
1.5.3
1.5.2
1.5.1
1.5.0
1.4.16
1.4.15
1.4.14
1.4.13
1.4.12
1.4.11
1.4.10
1.4.9
1.4.8
1.4.7
1.4.6
1.4.5
1.4.4
1.4.3
1.4.2
1.4.1
1.4.0
1.3.3
1.3.2
1.3.1
1.3.0
1.2.5
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.1.0
1.0.13-13
1.0.13-12
1.0.13-11
1.0.13-10
1.0.13-9
1.0.13-8
1.0.13-7
1.0.13-6
1.0.13-5
1.0.13-4
1.0.13-3
1.0.13-2
1.0.13-1
1.0.13-0
1.0.12
1.0.11
1.0.10
1.0.9
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
An engine for courtbot-like functionality to be included in city/county services sites.
courtbot-engine
/
lib
/
registrationState.js
14 lines
(12 loc)
•
260 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
var
registrationState =
Object
.
freeze
({
UNBOUND
:
0
,
ASKED_PARTY
:
1
,
ASKED_REMINDER
:
2
,
REMINDING
:
3
,
UNSUBSCRIBED
:
4
});
exports
.
default
= registrationState;