Skip to content

Instantly share code, notes, and snippets.

@jlcampana
Created June 17, 2014 18:37
Show Gist options
  • Select an option

  • Save jlcampana/ccc1ee90bd84b055c468 to your computer and use it in GitHub Desktop.

Select an option

Save jlcampana/ccc1ee90bd84b055c468 to your computer and use it in GitHub Desktop.
NodeJS Module
var parserRarbg = function(html){
return 'pepe';
};
//Definiciones públicas
exports.parserRarbg = parserRarbg;
//To use:
var parser = require('./parser');
var result = parser.parserRarbg(html);
console.log(result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment