crud-json-array
Advanced tools
Comparing version 0.0.5 to 0.0.6
24
index.js
"use strict"; | ||
var __extends = (this && this.__extends) || (function () { | ||
var extendStatics = Object.setPrototypeOf || | ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || | ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; | ||
return function (d, b) { | ||
extendStatics(d, b); | ||
function __() { this.constructor = d; } | ||
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); | ||
}; | ||
})(); | ||
exports.__esModule = true; | ||
var imp = require("./js-dist/create"); | ||
var CRUD = /** @class */ (function (_super) { | ||
__extends(CRUD, _super); | ||
function CRUD() { | ||
return _super.call(this) || this; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const imp = require("./js-dist/create"); | ||
class CRUD extends imp.Create { | ||
constructor() { | ||
super(); | ||
} | ||
return CRUD; | ||
}(imp.Create)); | ||
} | ||
exports.CRUD = CRUD; |
@@ -72,3 +72,2 @@ "use strict"; | ||
let curIndexRow = this.find_one_row(find); | ||
console.log(curIndexRow[0]); | ||
let array = this.table; | ||
@@ -75,0 +74,0 @@ array.splice(curIndexRow[0], 1); |
{ | ||
"name": "crud-json-array", | ||
"version": "0.0.5", | ||
"version": "0.0.6", | ||
"description": "This module is creating manipulating JSON array. That is create table, insert, update, select and delete. useful for small data", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
9272
124