UNPKG

stonkinator

Version:

A low level stock data aggregation tool, a boring lib for others to build upon

36 lines (35 loc) 1.69 kB
"use strict"; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.LoadSite = void 0; const cheerio_1 = __importDefault(require("cheerio")); const node_fetch_1 = __importDefault(require("node-fetch")); /** Custom site loader to fetch and load the site into a `Cheerio.Root` * @param url - The URL for the site to load * @returns A `Cheerio.Root` that contains the requested site * @internal */ const LoadSite = (url) => __awaiter(void 0, void 0, void 0, function* () { try { const data = yield node_fetch_1.default(url); const html = yield data.text(); if (data.status === 404) return Promise.reject("404"); return cheerio_1.default.load(html); } catch (_a) { return Promise.reject("Error while loading site"); } }); exports.LoadSite = LoadSite;