fixed a typo...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2014-03-22 15:59:20 +04:00
parent 26d79e318e
commit b774788c34

View File

@ -1116,7 +1116,7 @@ Object.get = function(obj, name, dfl){
//
// NOTE: this will not compact in-place.
Array.prototype.compact = function(){
return list.filter(function(){ return true })
return this.filter(function(){ return true })
}