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

dtable-sdk

Package Overview
Dependencies
Maintainers
1
Versions
213
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dtable-sdk - npm Package Compare versions

Comparing version 0.0.14 to 0.0.15

15

dist/dtable.js

@@ -164,5 +164,11 @@ "use strict";

}, {
key: "getTables",
value: function getTables() {
return this.dtableStore.value.tables;
}
}, {
key: "getTableByName",
value: function getTableByName(name) {
return _dtableStore.TableUtils.getTableByName(this.dtableStore.value.tables, name);
var tables = this.getTables();
return _dtableStore.TableUtils.getTableByName(tables, name);
}

@@ -184,3 +190,3 @@ }, {

value: function appendRow(table, rowData) {
var tables = this.dtableStore.value.tables;
var tables = this.getTables();
var tableIndex = tables.findIndex(function (t) {

@@ -204,3 +210,3 @@ return t._id === table._id;

value: function modifyRow(table, row, updated) {
var tables = this.dtableStore.value.tables;
var tables = this.getTables();
var tableIndex = tables.findIndex(function (t) {

@@ -222,4 +228,5 @@ return t._id === table._id;

var value = this.dtableStore.value;
var tables = this.getTables();
var table = _dtableStore.TableUtils.getTableByName(value.tables, tableName);
var table = _dtableStore.TableUtils.getTableByName(tables, tableName);

@@ -226,0 +233,0 @@ if (!table) {

{
"name": "dtable-sdk",
"version": "0.0.14",
"version": "0.0.15",
"description": "dtable sdk",

@@ -5,0 +5,0 @@ "main": "./dist/dtable.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