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