UNPKG

@0xcert/utils

Version:

General utility module with common helper functions.

7 lines (6 loc) 199 B
/** * Converts time in milliseconds to the appropriate ethereum timestamp. */ export function toSeconds(milliseconds: number) { return parseInt(`${parseFloat(`${milliseconds}`) / 1000}`) || 0; }