mirror of
https://github.com/Brandon-Rozek/Rozbot.git
synced 2024-11-07 20:30:34 -05:00
8 lines
204 B
JavaScript
8 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));
|
||
|
});
|
||
|
}
|