trashposs/src/client/app/common/scripts/get-md5.ts
syuilo b16dabc4ea [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 '';
};