Skip to content

Instantly share code, notes, and snippets.

@enricopolanski
Last active May 11, 2018 16:16
Show Gist options
  • Save enricopolanski/97d4f5e9d944e1fb56d56e910d6e325e to your computer and use it in GitHub Desktop.
Save enricopolanski/97d4f5e9d944e1fb56d56e910d6e325e to your computer and use it in GitHub Desktop.
export default class UserData {
constructor(days = {}, firstDay = getFirstDay(), lastAccessDay){
this.days = days;
this.firstDay = firstDay;
this.lastAccessDay = lastAccessDay;
}
static getFirstDay() {
return new Date();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment