summaryrefslogtreecommitdiff
path: root/runtime/js/30_metrics.js
blob: 30fa7cf80bc457c1f18677a62eb1f0f1ee9d52b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
"use strict";

((window) => {
  const core = window.Deno.core;

  function metrics() {
    return core.jsonOpSync("op_metrics");
  }

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