mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
13 lines
334 B
JavaScript
13 lines
334 B
JavaScript
|
|
const crypto = require('crypto');
|
|
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
exports.generateSha = function generateSha(key) {
|
|
return crypto.createHash('sha1', 'binary').update(key).digest('hex');
|
|
};
|
|
|
|
|
|
exports.readFile = function readFile(filePath) {
|
|
return fs.readFileSync(path.join(__dirname, `/${filePath}`));
|
|
}
|