Initial commit: Crypto trader application

This commit is contained in:
2025-12-25 20:20:40 -05:00
commit 07a04c1bb8
47895 changed files with 2042266 additions and 0 deletions

21
frontend/node_modules/recharts/es6/util/Global.js generated vendored Normal file
View File

@@ -0,0 +1,21 @@
var parseIsSsrByDefault = function parseIsSsrByDefault() {
return !(typeof window !== 'undefined' && window.document && window.document.createElement && window.setTimeout);
};
export var Global = {
isSsr: parseIsSsrByDefault(),
get: function get(key) {
return Global[key];
},
set: function set(key, value) {
if (typeof key === 'string') {
Global[key] = value;
} else {
var keys = Object.keys(key);
if (keys && keys.length) {
keys.forEach(function (k) {
Global[k] = key[k];
});
}
}
}
};