mirror of
https://github.com/Brandon-Rozek/Rozbot.git
synced 2024-11-07 20:30:34 -05:00
7 lines
204 B
JavaScript
7 lines
204 B
JavaScript
var cheerio = require('cheerio').load;
|
|
var promise = require('promise-polyfill');
|
|
module.exports = function(html) {
|
|
return new promise(function(resolve, reject) {
|
|
resolve(cheerio(html));
|
|
});
|
|
}
|