(data, start, end)
| 404 | |
| 405 | //TODO will be moved to a seperate file |
| 406 | function slicing(data, start, end) { |
| 407 | return data.slice(start, end); |
| 408 | } |
| 409 | |
| 410 | function meanCalculator(arr) { |
| 411 | var peakValue = arr[arr.length - 1]; |
no outgoing calls
no test coverage detected