Change the file extension of a path
npm install change-file-extension
import changeFileExtension from 'change-file-extension';
changeFileExtension('foo/bar.txt', 'md');
//=> 'foo/bar.md'
changeFileExtension('foo/bar.txt', '.md');
//=> 'foo/bar.md'
changeFileExtension('bar.txt', '');
//=> 'bar'
Type: string
The file path whose extension needs to be changed.
Type: string
The new extension to replace the old one.
To remove the extension, pass an empty string.