Skip to content

Instantly share code, notes, and snippets.

@objectfoo
Created June 11, 2019 23:54
Show Gist options
  • Select an option

  • Save objectfoo/aa32484b6f5f850916d1deb2503fcd55 to your computer and use it in GitHub Desktop.

Select an option

Save objectfoo/aa32484b6f5f850916d1deb2503fcd55 to your computer and use it in GitHub Desktop.
deslash and switch protocol using url-parse
var urlParse = require('url-parse');
var testurl = 'http://www.book.com//one/asdf//#123?a=12';
var parsed = urlParse(testurl.replace(/([^:]\/)\/+/g, '$1'), {});
parsed.set('protocol', 'https:');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment