mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-05 09:27:49 +00:00
wip: code formatting nits
This commit is contained in:
@@ -6,7 +6,7 @@ describe('pickBy', () => {
|
||||
it('should work with a predicate argument', () => {
|
||||
const object = { a: 1, b: 2, c: 3, d: 4 };
|
||||
|
||||
const actual = pickBy(object, (n) => n == 1 || n == 3);
|
||||
const actual = pickBy(object, (n) => n === 1 || n === 3);
|
||||
|
||||
assert.deepStrictEqual(actual, { a: 1, c: 3 });
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user