(o)
| 652 | ;USE(function(module){ |
| 653 | |
| 654 | function Gun(o){ |
| 655 | if(o instanceof Gun){ return (this._ = {gun: this, $: this}).$ } |
| 656 | if(!(this instanceof Gun)){ return new Gun(o) } |
| 657 | return Gun.create(this._ = {gun: this, $: this, opt: o}); |
| 658 | } |
| 659 | |
| 660 | Gun.is = function($){ return ($ instanceof Gun) || ($ && $._ && ($ === $._.$)) || false } |
| 661 |
no outgoing calls
no test coverage detected