Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 181 Bytes

README.md

File metadata and controls

12 lines (10 loc) · 181 Bytes

node-file-hash

Calculating file hash in node.js

How to use

(async () =>
{
    const hash = await fileHash('wildfly-22.0.0.Final.zip');
    console.log(hash);
})();