rxdb
Version:
A local-first realtime NoSQL Database for JavaScript applications - https://rxdb.info/
33 lines (32 loc) • 1.37 kB
JavaScript
/**
* functions that can or should be overwritten by plugins
* IMPORTANT: Do not import any big stuff from RxDB here!
* An 'overwritable' can be used inside WebWorkers for RxStorage only,
* and we do not want to have the full RxDB lib bundled in them.
*/
export var overwritable = {
/**
* if this method is overwritten with one
* that returns true, we do additional checks
* which help the developer but have bad performance
*/
isDevMode() {
return false;
},
/**
* Deep freezes and object when in dev-mode.
* Deep-Freezing has the same performance as deep-cloning, so we only do that in dev-mode.
* Also, we can ensure the readonly state via typescript
* @link https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/Object/freeze
*/
deepFreezeWhenDevMode(obj) {
return obj;
},
/**
* overwritten to map error-codes to text-messages
*/
tunnelErrorMessage(message) {
return "\n RxDB Error-Code: " + message + ".\n Hint: Error messages are not included in RxDB core to reduce build size.\n To show the full error messages and to ensure that you do not make any mistakes when using RxDB,\n use the dev-mode plugin when you are in development mode: https://rxdb.info/dev-mode.html?console=error\n ";
}
};
//# sourceMappingURL=overwritable.js.map