jquery-ui/tests/runner/lib/generateHash.js

11 lines
283 B
JavaScript
Raw Normal View History

import crypto from "node:crypto";
export function generateHash( string ) {
const hash = crypto.createHash( "md5" );
hash.update( string );
// QUnit hashes are 8 characters long
// We use 10 characters to be more visually distinct
return hash.digest( "hex" ).slice( 0, 10 );
}