UNPKG

leaf-orient

Version:

OrientDB ODM with support for schemas inspired by mongoose

44 lines (34 loc) 693 B
import Type from './type'; export default class Virtual extends Type { _preSerialize(value) { return this._serialize(value); } _preDeserialize(value) { return this._deserialize(value); } _serialize(value) { this.applySet(this.mainData, value); } _deserialize() { return this.applyGet(this.mainData); } static toString() { return 'Virtual'; } applyGet (scope) { if(!this.options.get) { throw new Error('Getter is not defined'); } return this.options.get.call(scope, this); } applySet (scope, value) { if(!this.options.set) { return this; } this.options.set.call(scope, value, this); return this; } get isModified() { return false; } }