mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-10 10:57:49 +00:00
Whitespace nit in test.js. [ci skip]
This commit is contained in:
@@ -5501,7 +5501,7 @@
|
|||||||
|
|
||||||
strictEqual(actual.length, 0);
|
strictEqual(actual.length, 0);
|
||||||
});
|
});
|
||||||
|
|
||||||
test('`_.' + methodName + '` should clone `__bindData__` for created functions', 3, function() {
|
test('`_.' + methodName + '` should clone `__bindData__` for created functions', 3, function() {
|
||||||
function greet(greeting, name) {
|
function greet(greeting, name) {
|
||||||
return greeting + ' ' + name;
|
return greeting + ' ' + name;
|
||||||
@@ -5509,7 +5509,7 @@
|
|||||||
var par1 = func(greet, 'hi'),
|
var par1 = func(greet, 'hi'),
|
||||||
par2 = func(par1, 'barney'),
|
par2 = func(par1, 'barney'),
|
||||||
par3 = func(par1, 'pebbles');
|
par3 = func(par1, 'pebbles');
|
||||||
|
|
||||||
equal(par1('fred'), isPartial ? 'hi fred' : 'fred hi')
|
equal(par1('fred'), isPartial ? 'hi fred' : 'fred hi')
|
||||||
equal(par2(), isPartial ? 'hi barney' : 'barney hi');
|
equal(par2(), isPartial ? 'hi barney' : 'barney hi');
|
||||||
equal(par3(), isPartial ? 'hi pebbles' : 'pebbles hi');
|
equal(par3(), isPartial ? 'hi pebbles' : 'pebbles hi');
|
||||||
|
|||||||
Reference in New Issue
Block a user