We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
_.invertBy
1 parent 7998632 commit 53168e4Copy full SHA for 53168e4
test/test.js
@@ -7671,19 +7671,6 @@
7671
assert.deepEqual(actual, expected);
7672
});
7673
7674
- QUnit.test('should use `_.identity` when `iteratee` is nullish', function(assert) {
7675
- assert.expect(1);
7676
-
7677
- var values = [, null, undefined],
7678
- expected = lodashStable.map(values, lodashStable.constant({ '1': ['a', 'c'], '2': ['b'] }));
7679
7680
- var actual = lodashStable.map(values, function(value, index) {
7681
- return index ? _.invertBy(object, value) : _.invertBy(object);
7682
- });
7683
7684
- assert.deepEqual(actual, expected);
7685
7686
7687
QUnit.test('should only add multiple values to own, not inherited, properties', function(assert) {
7688
assert.expect(1);
7689
0 commit comments