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

handsontable-helpers

Package Overview
Dependencies
Maintainers
1
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

handsontable-helpers - npm Package Compare versions

Comparing version 1.0.10 to 1.0.11

18

handsontable.helpers.js

@@ -69,3 +69,3 @@ /**

col.type = HH.typesMap[col.jsType];
if (prop == "_id") col.readOnly = true;
if (["id", "_id", "objectId"].indexOf(prop) != -1) col.readOnly = true;
if (col.jsType == "date") col.dateFormat = 'DD-MMM-YYYY';

@@ -196,2 +196,18 @@ return col;

HH.afterRemoveRow = function(rowNum, numRows, idArr, func) {
return new Promise(function(res, err) {
(function next() {
func(rowNum, function() {
rowNum++;
numRows--;
if (numRows > 0) next();
else res();
});
})();
});
};
HH.convArrArrToArrObj = function(hotData, minSpareRows, colHeaders) {

@@ -198,0 +214,0 @@ var arr = [];

2

package.json
{
"name": "handsontable-helpers",
"version": "1.0.10",
"version": "1.0.11",
"description": "",

@@ -5,0 +5,0 @@ "main": "handsontable.helpers.js",

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