¿Es seguro usarlo require("path").join
para concatenar URL, por ejemplo:
require("path").join("http://example.com", "ok");
//returns 'http://example.com/ok'
require("path").join("http://example.com/", "ok");
//returns 'http://example.com/ok'
Si no es así, ¿qué manera sugeriría para hacer esto sin escribir un código lleno de if?
path.posix.join('/one/two/three', 'four') // '/one/two/three/four
, path.posix.join('/one/two/three/', 'four') // '/one/two/three/four
,path.posix.join('/one/two/three/', '/four') // '/one/two/three/four
path.posix.join('http://localhost:9887/one/two/three/', '/four')
, la combinación elimina una de las barras dobles enhttp://
'http://localhost:9887/one/two/three/'.replace(/^\/+|\/+$/, '') + '/' + '/four'.replace(/^\/+|\/+$/, '')
y podría hacerlo String.prototype.trimSlashes = function() { return this.replace(/^\/+|\/+$/, ''); }
si no desea escribir la expresión regular una y otra vez. stackoverflow.com/a/22387870/2537258
['http://localhost:9887/one/two/three/', '/four'].map((part) => part. replace(/^\/+|\/+$/, '')).join('/')