UNPKG
werewolf-core
Version:
latest (0.0.1)
0.0.1
Are you a WEREWOLF?
werewolf-core
/
dist
/
core
/
log.js
11 lines
(10 loc)
•
278 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
"use strict"
;
exports
.
LOG_PHASE_TRANSITION
=
'log.phase-transition'
;
function
initLogPhaseTransition
(
day, phase
) {
return
{
type
:
exports
.
LOG_PHASE_TRANSITION
,
day
: day,
phase
: phase, }; }
exports
.
initLogPhaseTransition
= initLogPhaseTransition;