mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-26 20:16:44 -06:00
b1b02d0e32
And some optimizations
10 lines
258 B
TypeScript
10 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 '';
|
|
};
|