Skip to content

Instantly share code, notes, and snippets.

@MiguelCastillo
Last active August 29, 2015 14:03
Show Gist options
  • Select an option

  • Save MiguelCastillo/d9ddf33fe7f1e715e981 to your computer and use it in GitHub Desktop.

Select an option

Save MiguelCastillo/d9ddf33fe7f1e715e981 to your computer and use it in GitHub Desktop.
Windows drive letters to lower case
function fixPath(path) {
return path.replace(/^([A-Za-z]+:)?\//, function (match) {
return match.toLocaleLowerCase();
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment