| 720 | |
| 721 | // f(x) = ax^b + c |
| 722 | const createPowFunc = params => x => ((params.a || 1) * Math.pow(x, params.b || 1)) + (params.c || 0) |
| 723 | |
| 724 | const functionCreators = { |
| 725 | linear: positify(createLinearFunc), |
nothing calls this directly
no outgoing calls
no test coverage detected