UNPKG

cdn

Version:

Upload your files to cdn.

10 lines (7 loc) 168 B
exports.parse = function(path) { if (path.indexOf('/') === -1) { return path; } else { return path.slice(path.lastIndexOf('/') + 1); } };