mirror of
https://github.com/status-im/web3.js.git
synced 2025-02-22 19:18:07 +00:00
9 lines
193 B
JavaScript
9 lines
193 B
JavaScript
var Web3 = require('./lib/web3');
|
|
|
|
// dont override global variable
|
|
if (typeof window !== 'undefined' && typeof window.Web3 === 'undefined') {
|
|
window.Web3 = Web3;
|
|
}
|
|
|
|
module.exports = Web3;
|