Skip to content

Instantly share code, notes, and snippets.

@dferber90
Last active November 14, 2015 14:03
Show Gist options
  • Save dferber90/c0b87da304007bc94698 to your computer and use it in GitHub Desktop.
Save dferber90/c0b87da304007bc94698 to your computer and use it in GitHub Desktop.
Class
// 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