We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b07068 commit e47b7e4Copy full SHA for e47b7e4
lib/hosts.js
@@ -4,7 +4,11 @@
4
5
const maybeJoin = (...args) => args.every(arg => arg) ? args.join('') : ''
6
const maybeEncode = (arg) => arg ? encodeURIComponent(arg) : ''
7
-const formatHashFragment = (f) => f.toLowerCase().replace(/^\W+|\/|\W+$/g, '').replace(/\W+/g, '-')
+const formatHashFragment = (f) => f.toLowerCase()
8
+ .replace(/^\W+/g, '') // strip leading non-characters
9
+ .replace(/\W+$/g, '') // strip trailing non-characters
10
+ .replace(/\//g, '') // strip all slashes
11
+ .replace(/\W+/g, '-') // replace remaining non-characters with '-'
12
13
const defaults = {
14
sshtemplate: ({ domain, user, project, committish }) =>
0 commit comments