UNPKG

@tobyg74/tiktok-api-dl

Version:

Scraper for downloading media in the form of videos, images and audio from Tiktok. Also for stalking Tiktok Users

14 lines (13 loc) 383 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.validateCookie = void 0; const validateCookie = (cookie) => { if (!cookie) return false; if (typeof cookie === "string") return cookie.length > 0; if (Array.isArray(cookie)) return cookie.length > 0; return false; }; exports.validateCookie = validateCookie;