UNPKG

85 BJavaScriptView Raw
1export function unixizePath ( path ) {
2 return path.split( /[\/\\]/ ).join( '/' );
3}