UNPKG

4chan-full

Version:

www.4chan.org non-official read only api. That supports cool things!

17 lines (13 loc) 425 B
const { ArchiveItem } = require("../types/ArchiveItem"); /** * @param {HTMLTableRowElement} e archive document > "#arc-list tbody tr" element * * @returns {ArchiveItem} */ function parseArchiveItem(e) { const _archiveItem = new ArchiveItem(); _archiveItem.id = e.cells[0].textContent; _archiveItem.excerpt = e.cells[1].textContent; return _archiveItem; } module.exports = { parseArchiveItem };