UNPKG

@techmely/utils

Version:

Collection of helpful JavaScript / TypeScript utils

23 lines (20 loc) 422 B
/*! * @techmely/utils * Copyright(c) 2021-2024 Techmely <techmely.creation@gmail.com> * MIT Licensed */ "use strict"; (() => { // src/convertHrTime.ts function convertHrTime(hrtime) { const nanoseconds = hrtime; const number = Number(nanoseconds); const milliseconds = number / 1e6; const seconds = number / 1e9; return { seconds, milliseconds, nanoseconds }; } })();