UNPKG

mongoose-was-new

Version:

Adds wasNew property reflecting the value of isNew for post hooks

9 lines (6 loc) 168 B
module.exports = function mongooseWasNew(schema) { schema.pre('save', function wasNewHandler(next) { this.wasNew = this.isNew; next(); }); };