mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-02 08:07:50 +00:00
wip: code formatting nits
This commit is contained in:
@@ -6,7 +6,7 @@ describe('zipObject methods', () => {
|
||||
lodashStable.each(['zipObject', 'zipObjectDeep'], (methodName) => {
|
||||
const func = _[methodName],
|
||||
object = { barney: 36, fred: 40 },
|
||||
isDeep = methodName == 'zipObjectDeep';
|
||||
isDeep = methodName === 'zipObjectDeep';
|
||||
|
||||
it(`\`_.${methodName}\` should zip together key/value arrays into an object`, () => {
|
||||
const actual = func(['barney', 'fred'], [36, 40]);
|
||||
|
||||
Reference in New Issue
Block a user