wip: code formatting nits continued

This commit is contained in:
jdalton
2023-09-17 11:28:57 -07:00
parent b5c59317ea
commit 5308be3ba6
5 changed files with 15 additions and 12 deletions

View File

@@ -80,7 +80,7 @@ describe('overEvery', () => {
});
over('a', 'b', 'c');
expect(args, ['a', 'b').toEqual('c']);
expect(args).toEqual(['a', 'b', 'c']);
});
it('should use `this` binding of function for `predicates`', () => {