UNPKG

myst-cli

Version:
8 lines (7 loc) 196 B
import path from 'node:path'; export function removeExtension(file) { const { ext } = path.parse(file); if (ext) file = file.slice(0, file.length - ext.length); return file; }