mirror of
https://github.com/status-im/realm-js.git
synced 2025-01-10 22:36:01 +00:00
Check if there is a global console to silent eslint
This commit is contained in:
parent
c361031e36
commit
48b106e610
@ -54,6 +54,9 @@ var types = Object.freeze({
|
||||
});
|
||||
Object.defineProperty(realmConstructor, 'Types', {
|
||||
get: function() {
|
||||
if (typeof console != 'undefined') {
|
||||
/* global console */
|
||||
/* eslint-disable no-console */
|
||||
var stack = new Error().stack.split("\n").slice(2).join("\n");
|
||||
var msg = '`Realm.Types` is deprecated! Please specify the type name as lowercase string instead!\n'+stack;
|
||||
if (console.warn != undefined) {
|
||||
@ -62,6 +65,8 @@ Object.defineProperty(realmConstructor, 'Types', {
|
||||
else {
|
||||
console.log(msg);
|
||||
}
|
||||
/* eslint-enable no-console */
|
||||
}
|
||||
return types;
|
||||
}
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user