deno-snapshot 0.3.3

Generate snapshot for deno. Extracted some logic from main deno repo for better reusability.
Documentation
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";

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

  function opFormatDiagnostics(diagnostics) {
    return core.opSync("op_format_diagnostic", diagnostics);
  }

  function opApplySourceMap(location) {
    return core.applySourceMap(location);
  }

  window.__bootstrap.errorStack = {
    opFormatDiagnostics,
    opApplySourceMap,
  };
})(this);