File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 361
361
results = [ ] ;
362
362
for ( i = 0 , len = value . length ; i < len ; i ++ ) {
363
363
x = value [ i ] ;
364
- results . push ( x != null ? new itemClass ( x ) : null ) ;
364
+ results . push ( x != null ? new this . itemClass ( x ) : null ) ;
365
365
}
366
366
return results ;
367
- } ) ( ) ;
367
+ } ) . call ( this ) ;
368
368
}
369
369
}
370
370
return value ;
459
459
results = [ ] ;
460
460
for ( i = 0 , len = value . length ; i < len ; i ++ ) {
461
461
x = value [ i ] ;
462
- results . push ( x != null ? new itemClass ( x ) : null ) ;
462
+ results . push ( x != null ? new this . itemClass ( x ) : null ) ;
463
463
}
464
464
return results ;
465
- } ) ( ) ;
465
+ } ) . call ( this ) ;
466
466
}
467
467
}
468
468
return value ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " enju" ,
3
- "version" : " 0.2.3 " ,
3
+ "version" : " 0.2.4 " ,
4
4
"description" : " An elasticsearch on node.js written in CoffeeScript." ,
5
5
"main" : " index.js" ,
6
6
"scripts" : {
You can’t perform that action at this time.
0 commit comments