fix: ts format에서 하한값 기준으로 수정

This commit is contained in:
2022-04-07 03:03:38 +09:00
parent ad89dd0ffb
commit 0a3c98ec5a
2 changed files with 27 additions and 25 deletions
+13 -12
View File
@@ -1,21 +1,22 @@
import bs from 'binary-search';
const connectMap: [number, string][] = [
[50, '안함'],
[100, '무관심'],
[400, '보통'],
[200, '가끔'],
[800, '자주'],
[1600, '열심'],
[3200, '중독'],
[6400, '폐인'],
[12800, '경고'],
[0, '안함'],
[50, '무관심'],
[100, '보통'],
[400, '가끔'],
[200, '자주'],
[800, '열심'],
[1600, '중독'],
[3200, '폐인'],
[6400, '경고'],
[12800, '헐...'],
]
export function formatConnectScore(connect: number) {
const idx = bs(connectMap, connect, ([key], needle) => key - needle);
if(idx >= 0){
return connectMap[idx][1]??'?';
if (idx >= 0) {
return connectMap[idx][1] ?? '?';
}
return connectMap[-(idx + 1)][1]??'?';
return connectMap[-(idx + 1)][1] ?? '?';
}