UNPKG

friday-sdk

Version:

Official JavaScript/TypeScript SDK for the Friday API

14 lines (13 loc) 328 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.scrape = void 0; const scrape = (client, url, options) => { return client.request("/scrape", { method: "POST", body: JSON.stringify({ url, ...options, }), }); }; exports.scrape = scrape;