Trim a file extension from a String.
npm install @jswork/strip-extname
import stripExtname from '@jswork/strip-extname';
const src = 'path/subpath/file.txt.js';
const result1 = stripExtname(src, true);
const result2 = stripExtname(src);
//path/subpath/file
//path/subpath/file.txt
Code released under the MIT license.