blob: 6d033bf3ee009c7a25d548fd9718287be2e6e769 [file] [log] [blame] [edit]
/* exported trace */
// Logging utility function.
function trace(arg) {
var now = (window.performance.now() / 1000).toFixed(3);
console.log(now + ': ', arg);
}