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

uniqorm

Package Overview
Dependencies
Maintainers
1
Versions
123
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

uniqorm - npm Package Compare versions

Comparing version 1.0.0-alpha.3 to 1.0.0-alpha.4

13

lib/model/Find.js

@@ -46,2 +46,12 @@ /* UNIQORM

/**
* @param {...*} values
* @return {Find}
*/
Find.prototype.whereAnd = function(values) {
this._where = this._where || [];
this._where.push.apply(this._where, Array.prototype.slice.call(arguments));
return this;
};
Find.prototype.params = function(params) {

@@ -140,2 +150,5 @@ this._params = params;

if (self._where)
query.where.apply(query, self._where);
if (orderColumns) {

@@ -142,0 +155,0 @@ query.orderBy.apply(query, orderColumns);

2

package.json
{
"name": "uniqorm",
"description": "Easy to use, multi-dialect ORM framework for JavaScript",
"version": "1.0.0-alpha.3",
"version": "1.0.0-alpha.4",
"author": "Panates Ltd.",

@@ -6,0 +6,0 @@ "contributors": [

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