1
0
Fork 0

Updated aqb.

This commit is contained in:
Alan Plum 2014-10-21 14:46:38 +02:00
parent bcf23e2acf
commit c683de0cd8
3 changed files with 9 additions and 24 deletions

File diff suppressed because one or more lines are too long

2
js/node/node_modules/aqb/types.js generated vendored
View File

@ -49,7 +49,7 @@ function autoCastToken(token) {
return new SimpleReference(token);
}
if (typeof token === 'object') {
if (Object.prototype.toStrint.call(token) === '[object ArangoCollection]') {
if (Object.prototype.toString.call(token) === '[object ArangoCollection]') {
return new Identifier(token.name);
}
if (Object.prototype.toString.call(token) === '[object Array]') {

View File

@ -1,6 +1,6 @@
{
"dependencies": {
"aqb": "1.3.0",
"aqb": "1.3.1",
"buster-format": "0.5.6",
"cheerio": "0.17.0",
"coffee-script": "1.7.1",