mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-03 08:37:49 +00:00
perfomance fixes, eslint fixes (#4482)
This commit is contained in:
committed by
John-David Dalton
parent
29eb5713f5
commit
898b378f06
@@ -25,11 +25,11 @@ describe('isFunction', function() {
|
||||
});
|
||||
|
||||
it('should return `true` for async functions', function() {
|
||||
assert.strictEqual(isFunction(asyncFunc), typeof asyncFunc == 'function');
|
||||
assert.strictEqual(isFunction(asyncFunc), typeof asyncFunc === 'function');
|
||||
});
|
||||
|
||||
it('should return `true` for generator functions', function() {
|
||||
assert.strictEqual(isFunction(genFunc), typeof genFunc == 'function');
|
||||
assert.strictEqual(isFunction(genFunc), typeof genFunc === 'function');
|
||||
});
|
||||
|
||||
it('should return `true` for the `Proxy` constructor', function() {
|
||||
|
||||
Reference in New Issue
Block a user