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

table-sort-js

Package Overview
Dependencies
Maintainers
1
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

table-sort-js - npm Package Compare versions

Comparing version 1.18.1 to 1.18.2

2

package.json
{
"name": "table-sort-js",
"version": "1.18.1",
"version": "1.18.2",
"description": "A JavaScript client-side HTML table sorting library with no dependencies required.",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -29,3 +29,6 @@ /*

for (let table of getTagTable) {
if (table.classList.contains("table-sort")) {
if (
table.classList.contains("table-sort") &&
!table.classList.contains("table-processed")
) {
makeTableSortable(table);

@@ -118,2 +121,3 @@ }

function makeTableSortable(sortableTable) {
sortableTable.classList.add("table-processed");
const table = {

@@ -120,0 +124,0 @@ bodies: getTableBodies(sortableTable),

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