mirror of
https://github.com/certd/certd.git
synced 2025-11-25 09:10:11 +08:00
12 lines
246 B
JavaScript
12 lines
246 B
JavaScript
import os from 'os'
|
|
export default {
|
|
join (...dirs) {
|
|
const url = new URL('../' + dirs.join('/'), import.meta.url)
|
|
let path = url.pathname
|
|
if (os.type() === 'Windows_NT') {
|
|
path = path.substring(1)
|
|
}
|
|
return path
|
|
}
|
|
}
|