mirror of
https://github.com/status-im/realm-js.git
synced 2025-01-12 15:24:18 +00:00
8 lines
163 B
JavaScript
8 lines
163 B
JavaScript
'use strict';
|
|
|
|
if (typeof Realm != 'undefined') {
|
|
module.exports = Realm; // eslint-disable-line no-undef
|
|
} else {
|
|
module.exports = require('./realm');
|
|
}
|