UNPKG

node-ip-collection

Version:

Nodejs ip collection (fast search ip in custom range)

18 lines (13 loc) 226 B
class Timer { #start = 0; constructor() { this.start(); } start() { this.#start = process.hrtime(); } end() { return (process.hrtime(this.#start)[1] / 1e6).toFixed(3); } } module.exports = Timer;