mirror of
https://github.com/BreizhHardware/Jellystat.git
synced 2026-01-18 16:27:20 +01:00
8 lines
165 B
JavaScript
8 lines
165 B
JavaScript
const sanitizeFilename = require("sanitize-filename");
|
|
|
|
const sanitizeFile = (filename) => {
|
|
return sanitizeFilename(filename);
|
|
};
|
|
|
|
module.exports = sanitizeFile;
|