UNPKG

tus-js-client-olalonde

Version:

A pure JavaScript client for the tus resumable upload protocol

16 lines (15 loc) 272 B
/** * Generate a fingerprint for a file which will be used the store the endpoint * * @param {File} file * @return {String} */ export default function fingerprint(file) { return [ "tus", file.name, file.type, file.size, file.lastModified ].join("-"); }