| 711 | |
| 712 | // f(x) = ax + b |
| 713 | const createLinearFunc = params => x => ((params.a || 1) * x) + (params.b || 0) |
| 714 | |
| 715 | // f(x) = ax² + bx + c |
| 716 | const createQuadraticFunc = params => x => ((params.a || 1) * x * x) + ((params.b || 1) * x) + (params.c || 0) |
nothing calls this directly
no outgoing calls
no test coverage detected