DefinitelyTyped/types/hash-file/hash-file-tests.ts
2017-04-12 20:58:44 +09:00

8 lines
151 B
TypeScript

import hashFile = require('hash-file');
hashFile('tsconfig.json')
.then((hash: string) => {
});
const hash = hashFile.sync('tsconfig.json');