If I invoke the same decorated asynchronous function multiple times, will I see the timing values clobbered?
i.e.
fooT = timely.promise(foo);
fooT("foo").then(r => console.log(fooT.time));
fooT("bar").then(r => console.log(fooT.time)) // which time does this log?;