UNPKG

cogs

Version:

The fast file transform pipeline.

10 lines (7 loc) 208 B
import npath from 'path'; export default (path, newExt) => { if (!newExt) return path; const oldExt = npath.extname(path); if (oldExt) path = path.slice(0, -oldExt.length); return path + newExt; };