@axerunners/axecore-lib
Version:
A pure and powerful JavaScript Axe library.
12 lines (9 loc) • 334 B
JavaScript
/* eslint-disable */
// TODO: Remove previous line and work through linting issues at next edit
var Hash = require('../crypto/hash');
var HashUtil = {
getRandomHashHexString: function getRandomHashHexString() {
return Hash.sha256sha256(Buffer.from(Math.random().toString())).toString('hex');
}
};
module.exports = HashUtil;