Whitespace nits. [ci skip]

This commit is contained in:
jdalton
2015-06-03 22:51:04 -07:00
parent 11eebfb78d
commit bdbc157c30
2 changed files with 4 additions and 4 deletions

View File

@@ -348,7 +348,7 @@
}
return -1;
}
/**
* The base implementation of `_.isFunction` without support for environments
* with incorrect `typeof` results.

View File

@@ -10299,7 +10299,7 @@
strictEqual(object.memoized(1), 6);
strictEqual(object.memoized(2), 7);
});
test('should check cache for own properties', 1, function() {
var memoized = _.memoize(_.identity);
@@ -11377,7 +11377,7 @@
var modded = _.modArgs(fn, doubled, _.identity);
deepEqual(modded(5), [10]);
});
test('should not set a `this` binding', 1, function() {
var modded = _.modArgs(function(x) {
return this[x];
@@ -16823,7 +16823,7 @@
deepEqual(actual, expected);
});
test('should not set a `this` binding', 1, function() {
var p = _.wrap(_.escape, function(func) {
return '<p>' + func(this.text) + '</p>';