sensordb2 e64a8defe5 3.17 пре 1 година
..
test e64a8defe5 3.17 пре 1 година
.travis.yml e64a8defe5 3.17 пре 1 година
CHANGELOG.md e64a8defe5 3.17 пре 1 година
CODE_OF_CONDUCT.md e64a8defe5 3.17 пре 1 година
LICENSE.md e64a8defe5 3.17 пре 1 година
README.md e64a8defe5 3.17 пре 1 година
bin.js e64a8defe5 3.17 пре 1 година
index.js e64a8defe5 3.17 пре 1 година
package.json e64a8defe5 3.17 пре 1 година

README.md

shasum-object

get the shasum of a buffer or object

Install - Usage - License: Apache-2.0

npm travis standard

Install

npm install shasum-object

Usage

var fs = require('fs')
var shasum = require('shasum-object')

shasum('of a string')
shasum(fs.readFileSync('of-a-file.txt'))

shasum({
  of: ['an', 'object']
})

API

shasum(input, algorithm = 'sha1', encoding = 'hex')

Compute the hash for the given input.

License

Apache-2.0