()
| 17 | * @return {URL} url - instance of a URL all nice and parsed |
| 18 | */ |
| 19 | var URL = function () { |
| 20 | |
| 21 | var u = this; |
| 22 | |
| 23 | if ( ! (u && u.hasOwnProperty && (u instanceof URL))) { |
| 24 | u = new URL(); |
| 25 | } |
| 26 | |
| 27 | return u._init.apply(u, arguments); |
| 28 | }; |
| 29 | |
| 30 | (function(){ |
| 31 |
nothing calls this directly
no outgoing calls
no test coverage detected