UNPKG

@thi.ng/file-io

Version:

Assorted file I/O utils (w/ logging support) for NodeJS/Bun

8 lines (7 loc) 138 B
const fileExt = (path) => { const match = /\.(\w+)$/.exec(path); return match ? match[1].toLowerCase() : ""; }; export { fileExt };