mirror of https://github.com/nocodb/nocodb
Pranav C
2 years ago
committed by
GitHub
8 changed files with 29 additions and 11 deletions
@ -0,0 +1,4 @@
|
||||
export function parseHrtimeToSeconds(hrtime) { |
||||
const seconds = (hrtime[0] + hrtime[1] / 1e6).toFixed(3); |
||||
return seconds; |
||||
} |
@ -1,4 +1,5 @@
|
||||
import { populateMeta } from './populateMeta'; |
||||
export * from './columnHelpers'; |
||||
export * from './apiHelpers'; |
||||
|
||||
export { populateMeta }; |
||||
|
Loading…
Reference in new issue