1
0
Fork 0

Fixed jslint warning, missing semicolon

This commit is contained in:
Michael Hackstein 2014-05-19 16:19:22 +02:00
parent 6a33a9f9e3
commit af96bf0b70
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ AQLGenerator.prototype.filter = function(example) {
var ex = [];
if (Object.prototype.toString.call(example) !== "[object Array]") {
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];
} else {