UNPKG

@pdftron/webviewer-react-toolkit

Version:

A React component library for integrating with PDFTron WebViewer API.

12 lines (11 loc) 313 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getExtension = void 0; /** * Returns the extension of a filename. */ exports.getExtension = function (filename) { if (filename === void 0) { filename = ''; } var split = filename.split('.'); return split.pop(); };