UNPKG
io3fix
Version:
latest (1.1.8-b)
1.2.1
1.1.8
1.1.8-b
toolkit for interior apps
3d.io
archilogic-com/3dio-js
io3fix
/
src
/
utils
/
file
/
get-md5-hash.js
6 lines
(5 loc)
•
162 B
JavaScript
View Raw
1
2
3
4
5
6
import
readFile
from
'./read.js'
import
md5
from
'../math/md5.js'
export
default
function
getMd5Hash
(
file
) {
return
readFile
(file,
'binaryString'
).
then
(md5) }