FLUJOS/BACK_BACK/node_modules/mongoose/lib/helpers/populate/SkipPopulateValue.js
2025-11-07 00:06:12 +01:00

10 lines
192 B
JavaScript
Executable file

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