verdaccio/test/functional/lib/test.utils.js

15 lines
311 B
JavaScript

import crypto from 'crypto';
import fs from 'fs';
import path from 'path';
function generateSha(key) {
return crypto.createHash('sha1', 'binary').update(key).digest('hex');
}
function readFile(filePath) {
return fs.readFileSync(path.join(__dirname, `/${filePath}`));
}
export { generateSha, readFile }