Skip to content

Instantly share code, notes, and snippets.

View Chrissiku's full-sized avatar
🎯
Focusing

Chris Siku Chrissiku

🎯
Focusing
View GitHub Profile
// MessageParser starter code
class MessageParser {
constructor(actionProvider, state) {
this.actionProvider = actionProvider;
this.state = state;
}
parse(message) {
console.log(message)
}