This repository contains a JavaScript performance measuring tool (JsPerf) and some common data structures (JsQueue, JsLinkedList).
A JavaScript performance measuring tool.
- Ability to append an additional custom metric.
- Supply a custom output formatter. The default is
console.table
. - Modern browser support (IE10 and up).
- Measured in milliseconds, accurate to five thousandths of a millisecond (5 microseconds).
- Uses the performance API under the covers.
- Unit test coverage.
- An example custom formatter.
- Wire-up to HTTP sevice endpoint.
- Node.js, npm, and Travis CI.
A JavaScript queue data structure implemented using two stacks.
- Straight forward API (only four methods: enqueue, dequeue, peek, size).
- Modern browser support (IE10 and up).
- Unit test coverage.