UNPKG

specpress

Version:

Export PDF and/or DOCX files from a subset of Markdown, ASN.1 and JSON files

9 lines (6 loc) 183 B
import { extname } from "path"; export function getFileExtension(pathFiile) { // Get the file extension const fileExtension = extname(pathFiile); return fileExtension; }