refactor(deno): remove concept of bin & json ops (#10145)

This commit is contained in:
Aaron O'Mullan 2021-04-12 21:55:05 +02:00 committed by GitHub
parent a20504642d
commit 46b1c653c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
76 changed files with 534 additions and 1080 deletions

View file

@ -5,7 +5,7 @@
const core = window.Deno.core;
function metrics() {
const { combined, ops } = core.jsonOpSync("op_metrics");
const { combined, ops } = core.opSync("op_metrics");
if (ops) {
combined.ops = ops;
}