Skip to content

Instantly share code, notes, and snippets.

@izumskee
Created September 17, 2015 08:07
Show Gist options
  • Save izumskee/ff6b4ac8eafd1d9ce872 to your computer and use it in GitHub Desktop.
Save izumskee/ff6b4ac8eafd1d9ce872 to your computer and use it in GitHub Desktop.
ES6 class in Meteor
// ES6
class Tweet {
constructor (doc) {
_.extend(this, doc);
}
}
Tweets = new Mongo.Collection('tweets', {
transform (doc) {
return new Tweet(doc);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment