On 1/24/06, Beau Hartshorne <[EMAIL PROTECTED]> wrote: > this.timeStamp = (new Date).getTime(); // 1.50
Firefox provides the Date.now() extension to get a numeric time stamp without object construction and manipulation overhead. Don't know if it's worth adding a different path for that, but avoiding Date object overhead made JS-only profiling much more useful for us. Mike
