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

dbay

Package Overview
Dependencies
Maintainers
1
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dbay - npm Package Compare versions

Comparing version 14.1.0 to 14.2.0

13

lib/query-mixin.js

@@ -120,2 +120,15 @@ (function() {

//---------------------------------------------------------------------------------------------------------
as_object(key, sql, ...P) {
var R, d, ref;
this.types.validate.nonempty_text(key);
R = {};
ref = this.query(sql);
for (d of ref) {
R[d[key]] = d;
delete d[key];
}
return R;
}
//---------------------------------------------------------------------------------------------------------
first_row(sql, ...P) {

@@ -122,0 +135,0 @@ var ref;

2

package.json
{
"name": "dbay",
"version": "14.1.0",
"version": "14.2.0",
"description": "In-Process, In-Memory & File-Based Relational Data Processing with SQLite, BetterSQLite3",

@@ -5,0 +5,0 @@ "main": "lib/main.js",

@@ -779,2 +779,3 @@

of multi-schema connections.
* **[+]** implement `as_object: ( key, sql, P... ) ->`

@@ -781,0 +782,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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