Rebuild after merging #4

This commit is contained in:
Angelos Chalaris
2017-12-11 21:42:57 +02:00
committed by GitHub
parent 1caf3e6c0c
commit 75106b0f5c

View File

@ -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;
}
```