Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80709 views
1
;(function (f) {
2
// CommonJS
3
if (typeof exports === "object" && typeof module !== "undefined") {
4
module.exports = f();
5
6
// RequireJS
7
} else if (typeof define === "function" && define.amd) {
8
define([], f);
9
10
// <script>
11
} else {
12
var g
13
if (typeof window !== "undefined") {
14
g = window;
15
} else if (typeof global !== "undefined") {
16
g = global;
17
} else if (typeof self !== "undefined") {
18
g = self;
19
}
20
{{defineNamespace}};
21
}
22
23
})(function () {
24
source()//trick uglify-js into not minifying
25
});
26
27