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

@ashvin27/react-datatable

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ashvin27/react-datatable - npm Package Compare versions

Comparing version 1.3.0 to 1.3.1

4

lib/index.js

@@ -204,2 +204,6 @@ 'use strict';

value: function isLast() {
// because for empty records page_number will still be 1
if (this.pages == 0) {
return true;
}
if (this.state.page_number == this.pages) {

@@ -206,0 +210,0 @@ return true;

4

package.json
{
"name": "@ashvin27/react-datatable",
"version": "1.3.0",
"version": "1.3.1",
"description": "ReactDatatable is a component which provide ability to create multifunctional table using single component like jQuery Datatable",

@@ -12,3 +12,3 @@ "main": "./lib/index.js",

"license": "MIT",
"homepage": "https://ashvin27.github.io/react-datatable/",
"homepage": "http://react-datatable.in/",
"bugs": {

@@ -15,0 +15,0 @@ "url": "https://github.com/ashvin27/react-datatable/issues",

@@ -17,3 +17,3 @@ # react-datatable

## Example
[https://ashvin27.github.io/react-datatable/example/](https://ashvin27.github.io/react-datatable/example/)
[http://react-datatable.in/](http://react-datatable.in/)

@@ -20,0 +20,0 @@ ## Installation

@@ -149,2 +149,6 @@ /**

isLast() {
// because for empty records page_number will still be 1
if(this.pages == 0){
return true;
}
if (this.state.page_number == this.pages) {

@@ -151,0 +155,0 @@ return true

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