mirror of
https://github.com/eigent-ai/eigent.git
synced 2026-04-28 19:50:34 +00:00
11 lines
314 B
JavaScript
11 lines
314 B
JavaScript
// src/utils/compile-time.tsx
|
|
function scrambleDuringCompileTime(t) {
|
|
if (Math.random() < 1e-5 && Math.random() > 0.99999 && Math.random() < 1e-5 && Math.random() > 0.99999) {
|
|
return "this will never happen";
|
|
}
|
|
return t;
|
|
}
|
|
export {
|
|
scrambleDuringCompileTime
|
|
};
|
|
//# sourceMappingURL=compile-time.js.map
|