Created
September 6, 2016 14:29
-
-
Save donabrams/f347db6e7444869f6890b76022fe37dd to your computer and use it in GitHub Desktop.
State Machine in Javascript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const STATUS_DRAFT = "STATUS_DRAFT" | |
const STATUS_PUBLISHED = "STATUS_PUBLISHED" | |
const STATUS_UNPUBLISHED = "STATUS_UNPUBLISHED" | |
function createPost() { | |
return { | |
status: STATUS_DRAFT | |
} | |
} | |
function publishPost(post) { | |
post.status = STATUS_PUBLISHED | |
} | |
function unpublishPost(post) { | |
post.status = STATUS_UNPUBLISHED | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment