Code coverage report for web3/index.js

Statements: 75% (3 / 4)      Branches: 50% (2 / 4)      Functions: 100% (0 / 0)      Lines: 75% (3 / 4)      Ignored: none     

All files » web3/ » index.js
1 2 3 4 5 6 7 8 91     1       1  
var Web3 = require('./lib/web3');
 
// dont override global variable
Iif (typeof window !== 'undefined' && typeof window.Web3 === 'undefined') {
    window.Web3 = Web3;
}
 
module.exports = Web3;