- 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
15 lines
266 B
JavaScript
15 lines
266 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
Object.defineProperty(exports, "tap", {
|
|
enumerable: true,
|
|
get: function() {
|
|
return tap;
|
|
}
|
|
});
|
|
function tap(value, mutator) {
|
|
mutator(value);
|
|
return value;
|
|
}
|