added todo

This commit is contained in:
Daniel Sommer 2017-03-28 18:11:00 +02:00
parent 7ef69b163c
commit ac49233bf9

View file

@ -140,6 +140,7 @@ function frontFill(string, fill, length) {
// replace illegal characters
function replaceIllegalChars(string) {
// TODO: check function, seems like it doesn't work at all
return string.replace(/[/\\:*?"<>|]/g, '-');
}