(inputValues, inputChart, scope = '')
| 98 | } |
| 99 | |
| 100 | function transform (inputValues, inputChart, scope = '') { |
| 101 | const containers = transformContainers(inputValues, inputChart, scope) |
| 102 | const values = Object.assign({}, containers.values) |
| 103 | const chart = Object.assign({}, containers.chart) |
| 104 | |
| 105 | return { |
| 106 | values, |
| 107 | chart |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | module.exports = transform |
| 112 | module.exports.transform = transform |
nothing calls this directly
no test coverage detected