mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-22 01:46:39 +00: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;
|