UNPKG

plotly-icons

Version:
8 lines (5 loc) 236 B
const { basename, dirname, extname, join } = require('path'); function removeExtensionFromFilePath(filePath) { return join(dirname(filePath), basename(filePath, extname(filePath))); } module.exports = removeExtensionFromFilePath;