Searched refs:PROF_COLS (Results 1 – 2 of 2) sorted by relevance
5 import { PROF_COLS, UNICODE_BLOCK } from "../src/constants";354 for (let i = 0; i < PROF_COLS.length; i++) {355 if (perc === PROF_COLS[i].perc) {356 col = PROF_COLS[i].col;358 } else if (perc > PROF_COLS[i].perc && perc < PROF_COLS[i + 1].perc) {359 const col1 = PROF_COLS[i].col;360 const col2 = PROF_COLS[i + 1].col;362 const val = perc - PROF_COLS[i].perc; constant363 const max = PROF_COLS[i + 1].perc - PROF_COLS[i].perc; constant
21 export const PROF_COLS = [ constant