summaryrefslogtreecommitdiff
path: root/cli/rt/30_metrics.js
blob: 59a76d91022c84e1501391448e87c3dc07c397ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.

((window) => {
  const { sendSync } = window.__bootstrap.dispatchJson;

  function metrics() {
    return sendSync("op_metrics");
  }

  window.__bootstrap.metrics = {
    metrics,
  };
})(this);