mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 23:37:49 +00:00
Make _.isEmpty work as expected on buffers.
This commit is contained in:
committed by
John-David Dalton
parent
583b03ba5f
commit
271f64ee3f
10
test/test.js
10
test/test.js
@@ -8658,7 +8658,7 @@
|
||||
var args = arguments;
|
||||
|
||||
QUnit.test('should return `true` for empty values', function(assert) {
|
||||
assert.expect(8);
|
||||
assert.expect(10);
|
||||
|
||||
var expected = lodashStable.map(empties, alwaysTrue),
|
||||
actual = lodashStable.map(empties, _.isEmpty);
|
||||
@@ -8672,6 +8672,14 @@
|
||||
assert.strictEqual(_.isEmpty(/x/), true);
|
||||
assert.strictEqual(_.isEmpty(symbol), true);
|
||||
assert.strictEqual(_.isEmpty(), true);
|
||||
|
||||
if (Buffer) {
|
||||
assert.strictEqual(_.isEmpty(new Buffer(0)), true);
|
||||
assert.strictEqual(_.isEmpty(new Buffer(1)), false);
|
||||
}
|
||||
else {
|
||||
skipAssert(assert, 2);
|
||||
}
|
||||
});
|
||||
|
||||
QUnit.test('should return `false` for non-empty values', function(assert) {
|
||||
|
||||
Reference in New Issue
Block a user