UNPKG

@cifumo/scraper-node

Version:

Sebuah Module Scraper yang dibuat oleh Sxyz dan SuzakuTeam untuk memudahkan penggunaan scraper di project ESM maupun CJS.

11 lines (9 loc) 234 B
/** * Function: For random Math to be hassle-free and difficult * Author: Sxyz * Thanks To Use This Modules */ function MathRandoms(array) { return array[Math.floor(Math.random() * array.length)]; } export default MathRandoms;