UNPKG

cogs

Version:

The fast file transform pipeline.

5 lines (3 loc) 138 B
import { extname } from 'node:path'; export default (path, newExt) => `${path.slice(0, path.length - extname(path).length)}${newExt}`;