Remove alternative _.where for Underscore build.

Former-commit-id: 4e42a26d4c16157957fa43dbb31ae9706e2641b8
This commit is contained in:
John-David Dalton
2012-11-12 07:35:33 -08:00
parent d29b8eca3c
commit d873890e46
3 changed files with 3 additions and 28 deletions

View File

@@ -689,10 +689,6 @@
equal(lodash.some([false, true, false]), true, '_.some: ' + basename);
equal(lodash.template('${a}', object), '${a}', '_.template should ignore ES6 delimiters: ' + basename);
var properties = new Foo;
properties.b = 2;
deepEqual(lodash.where(array, properties), [_.first(array)], '_.where should filter by inherited properties: ' + basename);
start();
});
});