Created
June 17, 2014 18:37
-
-
Save jlcampana/ccc1ee90bd84b055c468 to your computer and use it in GitHub Desktop.
NodeJS Module
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var parserRarbg = function(html){ | |
| return 'pepe'; | |
| }; | |
| //Definiciones públicas | |
| exports.parserRarbg = parserRarbg; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //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