mirror of
https://github.com/Expand-sys/ccashfrontend
synced 2025-12-20 16:42:13 +11:00
10 lines
No EOL
191 B
JavaScript
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;
|
|
}; |