UNPKG

ddg-bulk-image-downloader

Version:

Lazy way to download images from Duck Duck Go search results in bulk

10 lines (9 loc) 293 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.objToQueryString = void 0; function objToQueryString(params) { return Object.keys(params) .map((key) => key + "=" + params[key]) .join("&"); } exports.objToQueryString = objToQueryString;