MCPcopy Create free account
hub / github.com/Moddable-OpenSource/moddable / toDurationString

Function toDurationString

tools/xsbug/ProfilePane.js:617–623  ·  view source on GitHub ↗
(duration)

Source from the content-addressed store, hash-verified

615}});
616
617function toDurationString(duration) {
618 duration = Math.round((duration / 1000));
619 if (duration < 60000)
620 return duration + " ms";
621 duration = Math.round((duration / 1000));
622 return duration + " s";
623}
624
625var ProfileDurationContainers = {
626 callees: Container.template(function($) { return {

Callers 1

ProfilePane.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected