mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 01:19:30 +08:00
5 lines
117 B
Text
5 lines
117 B
Text
export default function slash ( path ) {
|
|
return typeof path === 'string' ?
|
|
path.replace( /\\/g, '/' ) :
|
|
path;
|
|
}
|