UNPKG

ice.fo.utils

Version:

6 lines (4 loc) 182 B
export default function getFilename({ text, keepExtension = false }) { const name = text.split('\\').pop().split('/').pop(); return keepExtension ? name : name.split('.')[0]; }