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:
@@ -5,7 +5,7 @@ import { _ } from './utils';
|
||||
describe('pull methods', () => {
|
||||
lodashStable.each(['pull', 'pullAll', 'pullAllWith'], (methodName) => {
|
||||
const func = _[methodName],
|
||||
isPull = methodName == 'pull';
|
||||
isPull = methodName === 'pull';
|
||||
|
||||
function pull(array, values) {
|
||||
return isPull ? func.apply(undefined, [array].concat(values)) : func(array, values);
|
||||
|
||||
Reference in New Issue
Block a user