spelling: extension

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2023-03-21 23:17:48 -04:00
parent acb85feafb
commit d6eb08dd89
2 changed files with 2 additions and 2 deletions

View file

@ -211,7 +211,7 @@
/**
* Get file extension lowercase
* @param {String} file name
* @return file extenstion
* @return file extension
*/
function getExt(file){
return (-1 !== file.indexOf('.')) ? file.replace(/.*[.]/, '') : '';