Skip to content

Instantly share code, notes, and snippets.

@shisama
Created October 23, 2019 09:13
Show Gist options
  • Select an option

  • Save shisama/846b6e3c4c55c556fb805ce66c05174c to your computer and use it in GitHub Desktop.

Select an option

Save shisama/846b6e3c4c55c556fb805ce66c05174c to your computer and use it in GitHub Desktop.
difference between Node.js v12 and v13 about console.timeEnd
const label = 'test';
console.time(label);
setTimeout(() => {
console.timeEnd(label);
}, 3000);
// 3001.732ms v12
// 3.001s v13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment