Simple Chat Room in NodeJS, expressJS and mongoDB in Docker Swarm
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

43 lines
1.1 KiB

'use strict';
const StrictModeError = require('../../error/strict');
/*!
* ignore
*/
module.exports = function(schematype) {
if (schematype.$immutable) {
schematype.$immutableSetter = createImmutableSetter(schematype.path,
schematype.options.immutable);
schematype.set(schematype.$immutableSetter);
} else if (schematype.$immutableSetter) {
schematype.setters = schematype.setters.
filter(fn => fn !== schematype.$immutableSetter);
delete schematype.$immutableSetter;
}
};
function createImmutableSetter(path, immutable) {
return function immutableSetter(v) {
if (this == null || this.$__ == null) {
return v;
}
if (this.isNew) {
return v;
}
const _immutable = typeof immutable === 'function' ?
immutable.call(this, this) :
immutable;
if (!_immutable) {
return v;
}
if (this.$__.strictMode === 'throw' && v !== this[path]) {
throw new StrictModeError(path, 'Path `' + path + '` is immutable ' +
'and strict mode is set to throw.', true);
}
return this[path];
};
}