mirror of https://gitee.com/bigwinds/arangodb
Fixed jslint warning, missing semicolon
This commit is contained in:
parent
6a33a9f9e3
commit
af96bf0b70
|
@ -192,7 +192,7 @@ AQLGenerator.prototype.filter = function(example) {
|
||||||
var ex = [];
|
var ex = [];
|
||||||
if (Object.prototype.toString.call(example) !== "[object Array]") {
|
if (Object.prototype.toString.call(example) !== "[object Array]") {
|
||||||
if (Object.prototype.toString.call(example) !== "[object Object]") {
|
if (Object.prototype.toString.call(example) !== "[object Object]") {
|
||||||
throw "The example has to be an Object, or an Array"
|
throw "The example has to be an Object, or an Array";
|
||||||
}
|
}
|
||||||
ex = [example];
|
ex = [example];
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue