SkipPopulateValue.js 192 B

12345678910
  1. 'use strict';
  2. module.exports = function SkipPopulateValue(val) {
  3. if (!(this instanceof SkipPopulateValue)) {
  4. return new SkipPopulateValue(val);
  5. }
  6. this.val = val;
  7. return this;
  8. };