jkhashing
v1.0.1
Published
A package to return the md5 hash of files. By Jaswin - 71772217301
Downloads
4
Readme
Installation
npm install jkhashing
Calculating hash for a file
const rthash = require('jkhashing');
rthash('./file_path').then(hash => {
console.log('Returned hash:', hash);
}).catch(err => {
console.error('Error:', err);
});