1.0.1 • Published 7 years ago

console-time-polyfill-simple v1.0.1

Weekly downloads
29
License
MIT
Repository
github
Last release
7 years ago

console.time polyfill

Lightweight and simple polyfill for console.time() and console.timeEnd().

Can be installed via bower with bower install console-time --save-dev.

Example usage

// Start the timer by passing it a key
console.time('myTimer');

// Call timeEnd later to see how long an operation took
setTimeout(function() {
  console.timeEnd('myTimer');
}, 2000);

// It should then log out something like..
'myTimer: 2000ms'

For more information on console.time() visit MDN.