UNPKG
@vinothnb/smb2
Version:
latest (0.18.0)
0.18.0
SMB2 Client
github.com/vinothnb/marsaud-smb2
vinothnb/marsaud-smb2
@vinothnb/smb2
/
lib
/
tools
/
convert_time.js
8 lines
(7 loc)
•
278 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
// https://stackoverflow.com/questions/6161776/convert-windows-filetime-to-second-in-unix-linux
var
winTicks =
10000000
;
var
uEpoch =
11644473600
;
module
.
exports
=
function
convert
(
time
) {
var
unixTime = time / winTicks - uEpoch;
return
new
Date
(unixTime *
1000
); };