- ✅ Ticket 1.1: Estructura Clean Architecture en backend - ✅ Ticket 1.2: Schemas Zod compartidos - ✅ Ticket 1.3: Refactorización drugs.ts (1362 → 8 archivos modulares) - ✅ Ticket 1.4: Refactorización procedures.ts (3583 → 6 archivos modulares) - ✅ Ticket 1.5: Eliminación de duplicidades (~50 líneas) Cambios principales: - Creada estructura Clean Architecture en backend/src/ - Schemas Zod compartidos en backend/src/shared/schemas/ - Refactorización modular de drugs y procedures - Utilidades genéricas en src/utils/ (filter, validation) - Eliminados scripts obsoletos y documentación antigua - Corregidos errores: QueryClient, import test-error-handling - Build verificado y funcionando correctamente
44 lines
1 KiB
JavaScript
44 lines
1 KiB
JavaScript
'use strict';
|
|
|
|
var name = require('fn.name');
|
|
|
|
/**
|
|
* Wrap callbacks to prevent double execution.
|
|
*
|
|
* @param {Function} fn Function that should only be called once.
|
|
* @returns {Function} A async wrapped callback which prevents multiple executions.
|
|
* @public
|
|
*/
|
|
module.exports = function one(fn) {
|
|
var called = 0
|
|
, value;
|
|
|
|
/**
|
|
* The function that prevents double execution.
|
|
*
|
|
* @async
|
|
* @public
|
|
*/
|
|
async function onetime() {
|
|
if (called) return value;
|
|
|
|
called = 1;
|
|
value = await fn.apply(this, arguments);
|
|
fn = null;
|
|
|
|
return value;
|
|
}
|
|
|
|
//
|
|
// To make debugging more easy we want to use the name of the supplied
|
|
// function. So when you look at the functions that are assigned to event
|
|
// listeners you don't see a load of `onetime` functions but actually the
|
|
// names of the functions that this module will call.
|
|
//
|
|
// NOTE: We cannot override the `name` property, as that is `readOnly`
|
|
// property, so displayName will have to do.
|
|
//
|
|
onetime.displayName = name(fn);
|
|
return onetime;
|
|
};
|