Skip to content

Commit f9d30f4

Browse files
fixed rrr in array
1 parent dbc6b56 commit f9d30f4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/woql.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -712,7 +712,7 @@ WOQLQuery.prototype.file = function(json, opts){
712712

713713
WOQLQuery.prototype.order_by = function(asc_or_desc, query){
714714
let ovars = [];
715-
if(Array.isArrray(asc_or_desc)){
715+
if(Array.isArray(asc_or_desc)){
716716
for(var i = 0; i<asc_or_desc.length; i++){
717717
ovars.push(asc_or_desc[i].json ? asc_or_desc[i].json() : asc_or_desc[i])
718718
}

0 commit comments

Comments
 (0)