Skip to content

Instantly share code, notes, and snippets.

@joshrhoades
Last active December 20, 2015 18:39
Show Gist options
  • Save joshrhoades/6177747 to your computer and use it in GitHub Desktop.
Save joshrhoades/6177747 to your computer and use it in GitHub Desktop.
Remove FQDN from a string
var stripFQDN = function(theURL) {
return theURL.replace(/^.*\/\/[^\/]+/, '');
};
//_stripFQDN('https://gist.github.com/assets/application-f348fb986aecf8d3b65e959e23f6a29f.css');
//returns '/assets/application-f348fb986aecf8d3b65e959e23f6a29f.css'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment