Skip to content

Instantly share code, notes, and snippets.

@iskenxan
Created April 14, 2019 22:21
Show Gist options
  • Save iskenxan/02e0aa47a9eb6fa83587064cd627ff6b to your computer and use it in GitHub Desktop.
Save iskenxan/02e0aa47a9eb6fa83587064cd627ff6b to your computer and use it in GitHub Desktop.
const stampit = require('stampit');
const Character = stampit({
props: {
name: null,
health: 100,
stamina: 100,
},
init({ name = this.name }) {
this.name = name
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment