Skip to content

Instantly share code, notes, and snippets.

View lolkinetzky's full-sized avatar
🏠
Working from home

lolkinetzky

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