Socket
Socket
Sign inDemoInstall

final-orm

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

final-orm - npm Package Compare versions

Comparing version 1.0.0-alpha.5 to 1.0.0-alpha.6

8

dist/models/model.js

@@ -321,2 +321,6 @@ 'use strict';

if (sort) {
query += ' sort ' + item + '.' + sort;
}
if (limit || skip) {

@@ -326,6 +330,2 @@ query += ' limit ' + (skip ? skip + ', ' : '') + (limit || 100);

if (sort) {
query += ' sort ' + item + '.' + sort;
}
if (attributes || include) {

@@ -332,0 +332,0 @@ query += getAttributes();

@@ -222,9 +222,9 @@ import arangojs, { aql } from 'arangojs'

if (sort) {
query += ` sort ${item}.${sort}`
}
if (limit || skip) {
query += ` limit ${skip ? skip + ', ' : ''}${limit || 100}`
}
if (sort) {
query += ` sort ${item}.${sort}`
}

@@ -231,0 +231,0 @@ if (attributes || include) {

{
"name": "final-orm",
"version": "1.0.0-alpha.5",
"version": "1.0.0-alpha.6",
"repository": {

@@ -5,0 +5,0 @@ "type": "git",

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