Skip to content

Instantly share code, notes, and snippets.

@manuelzapata
Created February 14, 2019 21:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manuelzapata/171e01341b5d0ff3c7927d86366f25f3 to your computer and use it in GitHub Desktop.
Save manuelzapata/171e01341b5d0ff3c7927d86366f25f3 to your computer and use it in GitHub Desktop.
function procesarDatos(formato, datos) {
switch(formato) {
case 'xml':
//transformar datos de XML a objetos...
break;
case 'csv':
//transformar datos de CSV a objetos...
break;
}
//Continua procesamiento de datos
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment