MOOver.js/node_modules/mongoose/lib/helpers/populate/SkipPopulateValue.js
2022-02-18 13:54:33 +01:00

10 lines
No EOL
191 B
JavaScript

'use strict';
module.exports = function SkipPopulateValue(val) {
if (!(this instanceof SkipPopulateValue)) {
return new SkipPopulateValue(val);
}
this.val = val;
return this;
};