Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

customdatatabledev

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

customdatatabledev - npm Package Compare versions

Comparing version 1.0.4 to 1.0.5

16

dist/index.js

@@ -177,4 +177,8 @@ import * as React from 'react';

const compareValue = isDate
? new Date(a[sortBy]) - new Date(b[sortBy])
: a[sortBy] - b[sortBy];
? new Date(a[sortBy]) < new Date(b[sortBy])
? -1
: 1
: a[sortBy] < b[sortBy]
? -1
: 1;
return compareValue;

@@ -189,4 +193,8 @@ }),

const compareValue = isDate
? new Date(b[sortBy]) - new Date(a[sortBy])
: b[sortBy] - a[sortBy];
? new Date(a[sortBy]) > new Date(b[sortBy])
? -1
: 1
: a[sortBy] > b[sortBy]
? -1
: 1;
return compareValue;

@@ -193,0 +201,0 @@ }),

{
"name": "customdatatabledev",
"version": "1.0.4",
"version": "1.0.5",
"type": "module",

@@ -13,3 +13,3 @@ "description": "",

"type": "git",
"url": "git+https://github.com/pointingRickyTest/npmtestpack"
"url": "git+https://github.com/Devkumar-parekh/customdatatable"
},

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

Sorry, the diff of this file is not supported yet

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