- ✅ 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
28 lines
619 B
JavaScript
28 lines
619 B
JavaScript
/**
|
|
* Count how often a character (or substring) is used in a string.
|
|
*
|
|
* @param {string} value
|
|
* Value to search in.
|
|
* @param {string} character
|
|
* Character (or substring) to look for.
|
|
* @return {number}
|
|
* Number of times `character` occurred in `value`.
|
|
*/
|
|
export function ccount(value, character) {
|
|
const source = String(value)
|
|
|
|
if (typeof character !== 'string') {
|
|
throw new TypeError('Expected character')
|
|
}
|
|
|
|
let count = 0
|
|
let index = source.indexOf(character)
|
|
|
|
while (index !== -1) {
|
|
count++
|
|
index = source.indexOf(character, index + character.length)
|
|
}
|
|
|
|
return count
|
|
}
|