Skip to content

9gag-open-source/console-time

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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] (https://developer.mozilla.org/en-US/docs/Web/API/console.time).

About

console.time & console.timeEnd polyfill

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%