Velar/Backend/node_modules/mongoose/lib/helpers/populate/skipPopulateValue.js

11 lines
192 B
JavaScript
Raw Normal View History

2025-08-07 01:23:03 -07:00
'use strict';
module.exports = function SkipPopulateValue(val) {
if (!(this instanceof SkipPopulateValue)) {
return new SkipPopulateValue(val);
}
this.val = val;
return this;
};