MCPcopy Create free account
hub / github.com/ericf/urljs / URL

Function URL

url.js:19–28  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

17 * @return {URL} url - instance of a URL all nice and parsed
18 */
19var 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected