mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-24 09:49:05 +01:00
b16dabc4ea
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 '';
|
|
};
|