mirror of
https://github.com/orbitdb/orbitdb.git
synced 2025-10-07 22:57:07 +00:00
13 lines
321 B
JavaScript
13 lines
321 B
JavaScript
export const posixJoin = (...paths) => paths
|
|
.join('/')
|
|
.replace(/((?<=\/)\/+)|(^\.\/)|((?<=\/)\.\/)/g, '') || '.'
|
|
|
|
export const win32Join = (...paths) => paths
|
|
.join('\\')
|
|
.replace(/\//g, '\\')
|
|
.replace(/((?<=\\)\\+)|(^\.\\)|((?<=\\)\.\\)/g, '') || '.'
|
|
|
|
export const join = posixJoin
|
|
|
|
export default posixJoin
|