Calculates a SHA-384 of a given blob
npm install blob-to-sha384> Calculates a SHA-384 of a given blob
Using yarn:
``sh`
yarn add blob-to-sha384
or using npm:
`sh`
npm install blob-to-sha384
javascript
import blobToSHA384 from 'blob-to-sha384'const hash = await blobToSHA384(fileInput.files[0])
``