Skip to content

Instantly share code, notes, and snippets.

@Sikwan
Created July 29, 2016 08:24
Show Gist options
  • Save Sikwan/5b701731ce310324a78d4d36a2ff3a5a to your computer and use it in GitHub Desktop.
Save Sikwan/5b701731ce310324a78d4d36a2ff3a5a to your computer and use it in GitHub Desktop.
class Dimension {
constructor(entry) {
Object.assign(this, entry);
}
}
Dim = new Mongo.Collection('dimensions', {
transform: function(entry) {
return new Dimension(entry);
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment