2023-12-24 10:21:40 -05:00
|
|
|
export default (text:string)=>{
|
|
|
|
const dirSlash = process.platform === 'linux' ? '\/' : '\\';
|
|
|
|
return text?.replace(/(?<=\/Users\/|\/media\/)[^/]+/g, match=>'・'.repeat(match.length)).split(dirSlash).join(dirSlash);
|
2023-08-30 04:34:59 -04:00
|
|
|
}
|