mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-04 17:07:49 +00:00
wip: code formatting nits
This commit is contained in:
@@ -6,8 +6,8 @@ import pad from '../src/pad';
|
||||
describe('pad methods', () => {
|
||||
lodashStable.each(['pad', 'padStart', 'padEnd'], (methodName) => {
|
||||
const func = _[methodName],
|
||||
isPad = methodName == 'pad',
|
||||
isStart = methodName == 'padStart',
|
||||
isPad = methodName === 'pad',
|
||||
isStart = methodName === 'padStart',
|
||||
string = 'abc';
|
||||
|
||||
it(`\`_.${methodName}\` should not pad if string is >= \`length\``, () => {
|
||||
|
||||
Reference in New Issue
Block a user