0.0.1 • Published 3 years ago

@jongy/timeit v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

timeit-js

Clones CPython's timeit module, for JavaScript.

This is inteded to be an easy interface to run microbenchmarks.

For example - demonstrate Object vs Map access times (Node v14.4.0):

> timeit("d['a']", null, "d = new Map(); d['a'] = 5")
3.5180317138671874e-10
> timeit("d['a']", null, "d = {'a': 5}")
4.951427128906249e-10

TODOs:

  • Clean environment & side effects, like GC, JIT stuff, etc. For example, the result displayed above reproduces on a clean process, but not a process with "worn-out" heap.