function parseUrl()

in public/scripts/utils.js [1:5]


function parseUrl(href) {
  var anchor = document.createElement('a');
  anchor.href = href;
  return anchor;
}