You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
380 B
17 lines
380 B
'use strict';
|
|
|
|
const utils = require('../../utils');
|
|
|
|
/**
|
|
* Using spread operator on a Mongoose document gives you a
|
|
* POJO that has a tendency to cause infinite recursion. So
|
|
* we use this function on `set()` to prevent that.
|
|
*/
|
|
|
|
module.exports = function handleSpreadDoc(v) {
|
|
if (utils.isPOJO(v) && v.$__ != null && v._doc != null) {
|
|
return v._doc;
|
|
}
|
|
|
|
return v;
|
|
};
|