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:
Jay Wengrow
2019-07-04 14:41:14 -05:00
parent 3933cce671
commit 30eb6072c3
9 changed files with 10 additions and 10 deletions

View File

@ -18,7 +18,7 @@ test('Dig target success', () => {
expect(dig(data, 'level3')).toEqual('some data');
});
test('Dig target with falsey value', () => {
test('Dig target with falsy value', () => {
expect(dig(data, 'level3f')).toEqual(false);
});