Files
crawlab/frontend/crawlab-ui/src/utils/hash.ts

9 lines
181 B
Go

import md5 from 'md5';
export const getMd5 = (value: any): string => {
if (typeof value !== 'string') {
value = JSON.stringify(value);
}
return md5(value).toString();
};