File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 11const { endsWith, filter, replace } = require('lodash')
22
3- export function getAxesWithFilter(axes) {
3+ function getAxesWithFilter(axes) {
44 const groups = {
55 x: [],
66 y: [],
@@ -31,7 +31,7 @@ export function getAxesWithFilter(axes) {
3131 return groups
3232}
3333
34- export function processMultiQuotaData(
34+ function processMultiQuotaData(
3535 x,
3636 y,
3737 multiQuota,
@@ -62,7 +62,7 @@ export function processMultiQuotaData(
6262 }
6363}
6464
65- export function checkIsPercent(valueAxes, data) {
65+ function checkIsPercent(valueAxes, data) {
6666 const result = {
6767 isPercent: false,
6868 data: [],
@@ -114,3 +114,5 @@ export function checkIsPercent(valueAxes, data) {
114114
115115 return result
116116}
117+
118+ module.exports = { checkIsPercent, getAxesWithFilter, processMultiQuotaData }
You can’t perform that action at this time.
0 commit comments