16 lines
555 B
JavaScript
16 lines
555 B
JavaScript
/**
|
|
* generate file system safe string for a given string
|
|
* that can be used as a valid file name
|
|
* in all operating systems
|
|
* @param {String} string
|
|
* @param {String} replacer (optional) character to replace invalid characters
|
|
*/
|
|
function generateFileSystemSafeName(string, replacer) {
|
|
// from here https://serverfault.com/a/242134
|
|
const INVALID_CHARS_REGEX = /[*/?:\\<>|"\u0000-\u001F]/g; // eslint-disable-line
|
|
const slug = string.replace(INVALID_CHARS_REGEX, replacer || '');
|
|
|
|
return slug;
|
|
}
|
|
|
|
export default generateFileSystemSafeName;
|