Last active
January 9, 2018 08:20
-
-
Save mainanick/7bde050decdc57e0d5d8f4a1c373f128 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
var Command = (function() { | |
return function(command, args) { | |
console.log("Dispatch", command); | |
}; | |
})(); | |
Command("start", { test: 6 }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment