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

larvituser

Package Overview
Dependencies
Maintainers
3
Versions
268
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

larvituser - npm Package Compare versions

Comparing version 0.18.0 to 0.18.1

2

package.json
{
"name": "larvituser",
"version": "0.18.0",
"version": "0.18.1",
"author": {

@@ -5,0 +5,0 @@ "name": "Mikael 'Lilleman' Göransson",

@@ -141,4 +141,6 @@ 'use strict';

let sql = 'SELECT user_users.uuid as uuid, user_users.username as username',
allowedSortables = ['uuid', 'username'];
allowedSortables = ['uuid', 'username'],
mainDbFields = dbFields.slice(0);
if (that.returnFields !== undefined && ! Array.isArray(that.returnFields)) {

@@ -158,3 +160,3 @@ that.returnFields = [that.returnFields];

sql += 'WHERE 1 ';
dbFields.unshift(that.order.by);
mainDbFields.unshift(that.order.by);
} else {

@@ -190,3 +192,3 @@ sql += ' FROM user_users WHERE 1 ';

dbCon.query(sql, dbFields, function (err, rows) {
dbCon.query(sql, mainDbFields, function (err, rows) {
dbCon.release();

@@ -273,3 +275,2 @@ if (err) return cb(err);

totalElements = rows[0].totalElements;
cb(err);

@@ -276,0 +277,0 @@ });

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