All Downloads are FREE. Search and download functionalities are using the official Maven repository.

utils.files.js Maven / Gradle / Ivy

export function removeExtension(filename) {
  if (!filename)
    return filename

  const ext = getExtension(filename) 
  if (ext)
    return filename.slice(0, -1 * (ext.length + 1))
  else
    return filename
}

export function getExtension(filename) {
  if (filename) {
    return filename.substring(filename.lastIndexOf('.')+1, filename.length) 
  } else {
    return filename
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy