Skip to content

Instantly share code, notes, and snippets.

@gbellmann
Last active September 11, 2016 18:40
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 gbellmann/8d4e90d22292b1238d2ba3e6abc39a69 to your computer and use it in GitHub Desktop.
Save gbellmann/8d4e90d22292b1238d2ba3e6abc39a69 to your computer and use it in GitHub Desktop.
Azure Function written with Node.js using named arguments
// O se pueden incluir parámetros adicionales como variables de entrada
module.exports = function(context, miDisparador, miEntrada, miOtraEntrada) {
// la lógica de la función va aquí
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment