2019-04-23 13:56:15 +01:00
|
|
|
// Copyright (C) 2019 Storj Labs, Inc.
|
|
|
|
// See LICENSE for copying information.
|
|
|
|
|
2020-02-14 15:35:10 +00:00
|
|
|
/**
|
|
|
|
* toUnixTimestamp converts Date to unix timestamp.
|
|
|
|
* @param time
|
|
|
|
*/
|
2019-09-13 10:48:27 +01:00
|
|
|
export function toUnixTimestamp(time: Date): number {
|
2019-04-23 13:56:15 +01:00
|
|
|
return Math.floor(time.getTime() / 1000);
|
|
|
|
}
|