b1b02d0e32
And some optimizations
11 lines
258 B
TypeScript
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 '';
|
|
};
|