Socket
Socket
Sign inDemoInstall

vue-pagination-bootstrap

Package Overview
Dependencies
0
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.0 to 1.0.1

8

index.js

@@ -50,3 +50,9 @@ export default {

let _total = this._total / this._pageSize;
return _total >= 1 ? _total : 1;
if (_total < 1)
return 1;
if (_total % 1 != 0)
return parseInt(_total + 1);
return _total;
},

@@ -53,0 +59,0 @@ array() {

2

package.json
{
"name": "vue-pagination-bootstrap",
"version": "1.0.0",
"version": "1.0.1",
"description": "Server-side paging component in vue, template based on bootstrap",

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

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