ccashfrontend/views/node_modules/mongoose/lib/helpers/populate/SkipPopulateValue.js
2021-06-18 09:20:09 +10: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;
};