This commit is contained in:
Dmitry Borisenko
2022-03-02 00:42:55 +01:00
parent 869fcdf97b
commit 244d3925ce
5 changed files with 29 additions and 17 deletions

View File

@@ -0,0 +1,7 @@
<script>
// вывести время чего либо в консоль
var t0 = performance.now();
var t1 = performance.now();
console.log("layout time: " + (t1 - t0) + " mls");
//
</script>