Truncate a file name to a maximum length with ellipsis.
File name to truncate
Maximum length before truncation
Truncated name with ellipsis if needed
truncateFileName('very-long-file-name.pdf', 15); // "very-long-fi..."truncateFileName('short.pdf', 15); // "short.pdf" Copy
truncateFileName('very-long-file-name.pdf', 15); // "very-long-fi..."truncateFileName('short.pdf', 15); // "short.pdf"
Truncate a file name to a maximum length with ellipsis.