rudeshark.net/src/client/app/common/scripts/get-md5.ts
syuilo b1b02d0e32
[Client] Enable code splitting
And some optimizations
2018-11-12 04:09:02 +09:00

11 lines
258 B
TypeScript

// スクリプトサイズがデカい
//const crypto = require('crypto');
export default (data: ArrayBuffer) => {
//const buf = new Buffer(data);
//const hash = crypto.createHash("md5");
//hash.update(buf);
//return hash.digest("hex");
return '';
};