mirror of
https://github.com/certd/certd.git
synced 2025-11-25 09:10:11 +08:00
8 lines
159 B
JavaScript
8 lines
159 B
JavaScript
export default {
|
|
join (...dirs) {
|
|
const url = new URL('../' + dirs.join('/'), import.meta.url)
|
|
console.log('url', url)
|
|
return url.pathname
|
|
}
|
|
}
|