New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

google-play-scraper

Package Overview
Dependencies
Maintainers
1
Versions
87
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

google-play-scraper - npm Package Compare versions

Comparing version 1.2.0 to 1.2.1

6

lib/helpers.js

@@ -10,3 +10,3 @@ 'use strict';

if (opts.fullDetail) {
return getParseDetailList(opts.lang, opts.country);
return getParseDetailList(opts.lang, opts.country, opts.num);
}

@@ -22,5 +22,5 @@

*/
function getParseDetailList (lang, country) {
function getParseDetailList (lang, country, num) {
return function ($) {
const promises = $('.card').get().map(function (app) {
const promises = $('.card').get().slice(0, num).map(function (app) {
const appId = $(app).attr('data-docid');

@@ -27,0 +27,0 @@ return getApp({

{
"name": "google-play-scraper",
"version": "1.2.0",
"version": "1.2.1",
"description": "scrapes app data from google play store",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc