index.js 305 Bytes
const algorTypeEnumTemp = {};
window._ENUM.algorTypeList.forEach(d => {
  if (d.name) {
    algorTypeEnumTemp[d.name] = d.value;
  }
  if (d.value) {
    algorTypeEnumTemp[d.value] = d.name;
  }
});

export const algorTypeList = window._ENUM.algorTypeList;

export const algorTypeEnum = algorTypeEnumTemp;