From 24e6abf5289ef9aaa23536bcdb8bc4e7a5c6786f Mon Sep 17 00:00:00 2001 From: Paul Willoughby Date: Thu, 19 Mar 2015 10:17:47 +0000 Subject: [PATCH] Update README info about timers --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ae61c2a..7babb4f 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,7 @@ setTimeout(function () { }, 100); ``` -Timers use `Date.getTime()` which is known for being imprecise at the ms level. If this is a problem to you please submit a pull request and I'll take it. +Timers use `process.hrtime()` if available, and fallback to `Date.getTime()` which is known for being imprecise at the ms level. ### Batching