npm install sha1-sum
> SHA1 sum of a file
``sh`
$ npm install sha1-sum
`js
import sha1sum from 'sha1-sum';
sha1sum('path/to/file').then(sum => console.log(sum));
`
Returns a Promise that will resolve to the SHA1 sum of file`.
MIT