lukaswagner/csv-parser

Use High Resolution Time API for perfMon helper

Opened this issue · 0 comments

Currently, the perfMon helper relies on Date.now() to measure the performance of operations.
For higher accuracy and reliability it would be nice to use the Performance interface of the High Resolution Time API.
It would be possible to use performance.now() for the same logic with Date.now(), or to use performance.mark() and performance.measure() to get the delta.