| // Copyright 2018 the V8 project authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| const kMillis2Seconds = 1 / 1000; |
| function formatBytes(bytes) { |
| const units = ['B', 'KiB', 'MiB', 'GiB']; |
| while (index < units.length && bytes >= divisor) { |
| return bytes.toFixed(2) + units[index]; |
| function formatSeconds(millis) { |
| return (millis * kMillis2Seconds).toFixed(2) + 's'; |
| function defineCustomElement(name, generator) { |
| let htmlTemplatePath = name + '-template.html'; |
| .then(stream => stream.text()) |
| .then(templateText => customElements.define(name, generator(templateText))); |