https://github.com/Klerith/clean-course/blob/eb94920d28b279595786334bab3fae3cac8c8106/src/clean-code/05-dry.ts#L18 Estuve realizando pruebas y falto validar NaN si llegase a estar como price mi solucion es: ```javascript if (this[key] <= 0 || !this[key]) throw Error(`${key} is zero`); ```
clean-course/src/clean-code/05-dry.ts
Line 18 in eb94920
Estuve realizando pruebas y falto validar NaN si llegase a estar como price
mi solucion es: