Skip to content

Instantly share code, notes, and snippets.

@thedaviddias
Forked from dopa/moment-mongoose-virtuals.js
Last active August 29, 2015 14:10
Show Gist options
  • Save thedaviddias/bea9818e803f414fd288 to your computer and use it in GitHub Desktop.
Save thedaviddias/bea9818e803f414fd288 to your computer and use it in GitHub Desktop.
var moment = require('moment')
, dateMask = 'YYYY-MM-DD';
var MeetingSchema = new Schema({
...
});
MeetingSchema
.virtual('startDate_yyyymmdd')
.get(function () {
return moment(this.startDate).format(dateMask);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment