(f: Function)
| 550 | } |
| 551 | |
| 552 | export function isFunction(f: Function) { |
| 553 | return !!(f && f.constructor && f.call && f.apply); |
| 554 | } |
| 555 | |
| 556 | export function nearestDivisor(size: number, start: number): number { |
| 557 | for (let i = start; i < size; ++i) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…