mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-07-21 21:04:27 +08:00

* chore: arrow-body-style func-style is added in the rule * fix: linting issues fixed Co-authored-by: Srikanth Chekuri <srikanth.chekuri92@gmail.com>
5 lines
166 B
TypeScript
5 lines
166 B
TypeScript
const convertToNanoSecondsToSecond = (number: number): string =>
|
|
parseFloat((number / 1000000).toString()).toFixed(2);
|
|
|
|
export default convertToNanoSecondsToSecond;
|