Skip to content

Commit

Permalink
fix: add missing chunks file
Browse files Browse the repository at this point in the history
  • Loading branch information
Blackman99 committed Jun 28, 2023
1 parent aef6cec commit ae95003
Show file tree
Hide file tree
Showing 10 changed files with 198,895 additions and 0 deletions.
5,888 changes: 5,888 additions & 0 deletions js/chunks/JavaScript.tmLanguage-5b3aef1e.js

Large diffs are not rendered by default.

5,635 changes: 5,635 additions & 0 deletions js/chunks/TypeScript.tmLanguage-01b7ed7f.js

Large diffs are not rendered by default.

35 changes: 35 additions & 0 deletions js/chunks/_commonjsHelpers-24198af3.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};

function getDefaultExportFromCjs (x) {
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
}

function getAugmentedNamespace(n) {
if (n.__esModule) return n;
var f = n.default;
if (typeof f == "function") {
var a = function a () {
if (this instanceof a) {
var args = [null];
args.push.apply(args, arguments);
var Ctor = Function.bind.apply(f, args);
return new Ctor();
}
return f.apply(this, arguments);
};
a.prototype = f.prototype;
} else a = {};
Object.defineProperty(a, '__esModule', {value: true});
Object.keys(n).forEach(function (k) {
var d = Object.getOwnPropertyDescriptor(n, k);
Object.defineProperty(a, k, d.get ? d : {
enumerable: true,
get: function () {
return n[k];
}
});
});
return a;
}

export { getAugmentedNamespace as a, commonjsGlobal as c, getDefaultExportFromCjs as g };
Loading

0 comments on commit ae95003

Please sign in to comment.