()
| 234 | describe('isFunction', () => { |
| 235 | it('should return `true` for functions', () => { |
| 236 | function test() {} |
| 237 | |
| 238 | expect(Utils.isFunction(test)).toBe(true); |
| 239 | expect(Utils.isFunction(Array.prototype.slice)).toBe(true); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…