Changing instances of the word falsey to falsy for consistency sake, and especially as there is the array FilterFalsy function that is spelled without an e.
This commit is contained in:
@ -3,6 +3,6 @@ const {omitBy} = require('./_30s.js');
|
||||
test('omitBy is a Function', () => {
|
||||
expect(omitBy).toBeInstanceOf(Function);
|
||||
});
|
||||
test('Creates an object composed of the properties the given function returns falsey for', () => {
|
||||
test('Creates an object composed of the properties the given function returns falsy for', () => {
|
||||
expect(omitBy({ a: 1, b: '2', c: 3 }, x => typeof x === 'number')).toEqual({ b: '2' });
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user