Comparing version 1.1.1 to 1.1.2
{ | ||
"name": "radweb", | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"description": "radweb", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -183,2 +183,14 @@ "use strict"; | ||
} | ||
if (options.orderBy) { | ||
var first_1 = true; | ||
options.orderBy.Segments.forEach(function (c) { | ||
if (first_1) | ||
select += ' Order By '; | ||
else | ||
select += ', '; | ||
select += c.column.__getDbName(); | ||
if (c.descending) | ||
select += ' desc'; | ||
}); | ||
} | ||
console.log(select); | ||
@@ -185,0 +197,0 @@ return r.query(select).then(function (r) { |
Sorry, the diff of this file is not supported yet
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
1293588
202
10510
11
6