Strings
- Pasar a minusculas, cambiar espacios en blanco a - y quitar apostrofes
createProductDto.title
.toLowerCase()
.replaceAll(' ', '-')
.replaceAll("'", '');
createProductDto.title
.toLowerCase()
.replaceAll(' ', '-')
.replaceAll("'", '');