We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbc6b56 commit f9d30f4Copy full SHA for f9d30f4
lib/woql.js
@@ -712,7 +712,7 @@ WOQLQuery.prototype.file = function(json, opts){
712
713
WOQLQuery.prototype.order_by = function(asc_or_desc, query){
714
let ovars = [];
715
- if(Array.isArrray(asc_or_desc)){
+ if(Array.isArray(asc_or_desc)){
716
for(var i = 0; i<asc_or_desc.length; i++){
717
ovars.push(asc_or_desc[i].json ? asc_or_desc[i].json() : asc_or_desc[i])
718
}
0 commit comments