2018-11-12 04:09:02 +09:00
|
|
|
// スクリプトサイズがデカい
|
|
|
|
//const crypto = require('crypto');
|
2018-10-07 16:51:46 +09:00
|
|
|
|
|
|
|
export default (data: ArrayBuffer) => {
|
2018-11-12 04:09:02 +09:00
|
|
|
//const buf = new Buffer(data);
|
2018-12-19 21:20:25 +09:00
|
|
|
//const hash = crypto.createHash('md5');
|
2018-11-12 04:09:02 +09:00
|
|
|
//hash.update(buf);
|
2018-12-19 21:20:25 +09:00
|
|
|
//return hash.digest('hex');
|
2018-11-12 04:09:02 +09:00
|
|
|
return '';
|
|
|
|
};
|