function getFileName()

in www/browser/FileTransfer.js [32:35]


function getFileName (filePath) {
    const pos = filePath.lastIndexOf('/');
    return filePath.substring(pos + 1);
}