UNPKG

mangakakalot-api

Version:

Lightweight scraper library for MangaKakalot.gg (no server)

13 lines (10 loc) 284 B
// Service: details const { scrapeMangaDetails } = require('../../scrappers/mangakakalot'); /** * Get manga details including chapters list * @param {string} mangaId */ async function getDetails(mangaId) { return scrapeMangaDetails(mangaId); } module.exports = { getDetails };