const isEnabled =! Object.Keys (errores) .Este (x => errores [x]);
const isEnabled = !Object.keys(errors).some(x => errors[x]);
Evil Elephant
const isEnabled = !Object.keys(errors).some(x => errors[x]);