const path = require('path'); function buildUrl(base, ...inputs) { return new URL(path.posix.join(...inputs), base); } module.exports = { buildUrl, };