UNPKG

@pdftron/webviewer-react-toolkit

Version:

A React component library for integrating with PDFTron WebViewer API.

9 lines (8 loc) 208 B
/** * Returns the extension of a filename. */ export var getExtension = function (filename) { if (filename === void 0) { filename = ''; } var split = filename.split('.'); return split.pop(); };