File size: 117 Bytes
bc20498 |
1 2 3 4 5 6 |
export default function slash ( path ) {
return typeof path === 'string' ?
path.replace( /\\/g, '/' ) :
path;
}
|
bc20498 |
1 2 3 4 5 6 |
export default function slash ( path ) {
return typeof path === 'string' ?
path.replace( /\\/g, '/' ) :
path;
}
|