mirror of
https://github.com/toast-ts/Daggerbot-TS.git
synced 2024-11-18 13:00:58 -05:00
5 lines
230 B
TypeScript
5 lines
230 B
TypeScript
export default (text:string)=>{
|
|
const dirSlash = process.platform === 'linux' ? '\/' : '\\';
|
|
return text?.replace(/(?<=\/Users\/|\/home\/|\/media\/)[^/]+/g, match=>'・'.repeat(match.length)).split(dirSlash).join(dirSlash);
|
|
}
|