Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 3x 3x 3x 4x 4x 3x 5x | /** * Any thing useful that can be reused? */ const handlebars = require('handlebars'); const cheerio = require('cheerio'); exports.parseMessage = function(template, data) { const messageTemplate = handlebars.compile(template); return messageTemplate(data); } /** * Convert Html text into jQuery representation of the dom * <body></body> => $('body') ;) Easier right!? * @param {string} htmlText */ exports.htmlTo$ = function(htmlText) { return cheerio.load(htmlText); } |