mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-11 03:17:49 +00:00
Change intuitively to implicitly.
This commit is contained in:
@@ -6559,7 +6559,7 @@
|
|||||||
strictEqual(_.isEmpty(Foo), true);
|
strictEqual(_.isEmpty(Foo), true);
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should return an unwrapped value when intuitively chaining', 1, function() {
|
test('should return an unwrapped value when implicitly chaining', 1, function() {
|
||||||
if (!isNpm) {
|
if (!isNpm) {
|
||||||
strictEqual(_({}).isEmpty(), true);
|
strictEqual(_({}).isEmpty(), true);
|
||||||
}
|
}
|
||||||
@@ -7152,7 +7152,7 @@
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should return an unwrapped value when intuitively chaining', 1, function() {
|
test('should return an unwrapped value when implicitly chaining', 1, function() {
|
||||||
if (!isNpm) {
|
if (!isNpm) {
|
||||||
strictEqual(_('a').isEqual('a'), true);
|
strictEqual(_('a').isEqual('a'), true);
|
||||||
}
|
}
|
||||||
@@ -15070,7 +15070,7 @@
|
|||||||
];
|
];
|
||||||
|
|
||||||
_.each(funcs, function(methodName) {
|
_.each(funcs, function(methodName) {
|
||||||
test('`_(...).' + methodName + '` should return an unwrapped value when intuitively chaining', 1, function() {
|
test('`_(...).' + methodName + '` should return an unwrapped value when implicitly chaining', 1, function() {
|
||||||
if (!isNpm) {
|
if (!isNpm) {
|
||||||
var array = [1, 2, 3],
|
var array = [1, 2, 3],
|
||||||
actual = _(array)[methodName]();
|
actual = _(array)[methodName]();
|
||||||
|
|||||||
Reference in New Issue
Block a user