Socket
Socket
Sign inDemoInstall

rc-pagination

Package Overview
Dependencies
8
Maintainers
9
Versions
201
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.1.12 to 3.1.13

5

es/Pagination.js

@@ -19,5 +19,6 @@ import _extends from "@babel/runtime/helpers/esm/extends";

function isInteger(value) {
function isInteger(v) {
var value = Number(v);
return (// eslint-disable-next-line no-restricted-globals
typeof value === 'number' && isFinite(value) && Math.floor(value) === value
typeof value === 'number' && !isNaN(value) && isFinite(value) && Math.floor(value) === value
);

@@ -24,0 +25,0 @@ }

@@ -41,5 +41,6 @@ "use strict";

function isInteger(value) {
function isInteger(v) {
var value = Number(v);
return (// eslint-disable-next-line no-restricted-globals
typeof value === 'number' && isFinite(value) && Math.floor(value) === value
typeof value === 'number' && !isNaN(value) && isFinite(value) && Math.floor(value) === value
);

@@ -46,0 +47,0 @@ }

2

package.json
{
"name": "rc-pagination",
"version": "3.1.12",
"version": "3.1.13",
"description": "pagination ui component for react",

@@ -5,0 +5,0 @@ "keywords": [

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc