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 11.1.2 to 11.1.3

2

package.json
{
"name": "ka-table",
"version": "11.1.2",
"version": "11.1.3",
"license": "MIT",

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

@@ -112,3 +112,4 @@ "use strict";

var getGroupText = function (value, column, format, groupItems) {
return format ? format({ column: column, value: value, rowData: groupItems === null || groupItems === void 0 ? void 0 : groupItems[0] }) : "".concat((column && column.title ? column.title + ': ' : '')).concat(value);
var formattedValue = format && format({ column: column, value: value, rowData: groupItems === null || groupItems === void 0 ? void 0 : groupItems[0] });
return formattedValue != null ? formattedValue : "".concat((column && column.title ? column.title + ': ' : '')).concat(value);
};

@@ -115,0 +116,0 @@ exports.getGroupText = getGroupText;

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