2.0 KiB
2.0 KiB
tic
Return a high-resolution time.
Usage
var tic = require( '@stdlib/time/tic' );
tic()
Returns a high-resolution time.
var t = tic();
// returns [<number>,<number>]
The returned array
has the following format: [seconds, nanoseconds]
.
Notes
- In browser environments, the implementation uses the
performance.now
API. If theperformance-now
API is unavailable, the implementation falls back to theDate
object. - In non-browser environments, the implementation uses
process.hrtime
.
Examples
var tic = require( '@stdlib/time/tic' );
var toc = require( '@stdlib/time/toc' );
var start = tic();
setTimeout( onTimeout, 2000 );
function onTimeout() {
var elapsed = toc( start );
console.log( 'Elapsed: %d seconds and %d nanoseconds', elapsed[0], elapsed[1] );
}