You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

11 lines
336 B

/**
* Add better assurance that a generated file name will be safe
*/
export function safeTitleFileName(title: string) {
title = title.replace(/(?<=\S):\s/g, " - ");
title = title.replace(/[\<\>\|\:\/\\]/g, " ");
title = title.replace(/\s\&\s/g, " and ");
title = title.trim();
return title[0].toUpperCase() + title.slice(1);
}