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

ka-table

Package Overview
Dependencies
Maintainers
1
Versions
194
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ka-table - npm Package Compare versions

Comparing version 7.11.0 to 7.11.1

2

package.json
{
"name": "ka-table",
"version": "7.11.0",
"version": "7.11.1",
"license": "MIT",

@@ -5,0 +5,0 @@ "repository": "github:komarovalexander/ka-table",

@@ -59,2 +59,5 @@ "use strict";

}
if (typeof aValue === 'string' && typeof bValue === 'string') {
return aValue.toLowerCase() < bValue.toLowerCase() ? -1 : 1;
}
return aValue < bValue ? -1 : 1;

@@ -76,2 +79,5 @@ };

}
if (typeof aValue === 'string' && typeof bValue === 'string') {
return aValue.toLowerCase() > bValue.toLowerCase() ? -1 : 1;
}
return aValue > bValue ? -1 : 1;

@@ -78,0 +84,0 @@ };

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