From 75106b0f5c0ed5750b2acd40a1358eaa80657e30 Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Mon, 11 Dec 2017 21:42:57 +0200 Subject: [PATCH] Rebuild after merging #4 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 70476c2a9..c912c910e 100644 --- a/README.md +++ b/README.md @@ -239,7 +239,7 @@ First argument is the function name, subsequent arguments are passed to the func ```js var timeTaken = (f,...args) => { var t0 = performance.now(), r = f(...args); - console.log({performance.now() - t0); + console.log(performance.now() - t0); return r; } ```