mirror of
https://github.com/status-im/realm-js.git
synced 2025-01-10 22:36:01 +00:00
12 lines
250 B
JavaScript
12 lines
250 B
JavaScript
/* Copyright 2015 Realm Inc - All Rights Reserved
|
|
* Proprietary and Confidential
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
if (typeof Realm != 'undefined') {
|
|
module.exports = Realm; // eslint-disable-line no-undef
|
|
} else {
|
|
module.exports = require('./realm');
|
|
}
|