- Added Custom Exams tab showing all exams from Generation page - Displays title, module badges, duration, and status - Added Create Exam button - Kept Exam Sessions tab for institutional sessions - Search filters across exams Made-with: Cursor
23 lines
544 B
JavaScript
23 lines
544 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
Object.defineProperty(exports, "cloneDeep", {
|
|
enumerable: true,
|
|
get: function() {
|
|
return cloneDeep;
|
|
}
|
|
});
|
|
function cloneDeep(value) {
|
|
if (Array.isArray(value)) {
|
|
return value.map((child)=>cloneDeep(child));
|
|
}
|
|
if (typeof value === "object" && value !== null) {
|
|
return Object.fromEntries(Object.entries(value).map(([k, v])=>[
|
|
k,
|
|
cloneDeep(v)
|
|
]));
|
|
}
|
|
return value;
|
|
}
|