addyosmani/timing.js

when i used timing.printTable() ,don't get answer like example

YellowPure opened this issue · 3 comments

I changed some code :
<if (timing.hasOwnProperty(k)) >
to
<if (k in timing)>

then i can use it like <timing.printTable(window.performace.timing)>

is that ture?

I'm also experiencing this.
performance.timing.hasOwnProperty('...') // always false

@amk221 like this #20 ?

Yep