style: Fix ESLint & Prettier

This commit is contained in:
Sojin Park 2024-10-09 22:28:27 +09:00
parent 6621df110a
commit 274034524d
3 changed files with 3 additions and 5 deletions

View File

@ -6,7 +6,7 @@
`es-toolkit/compat`에서 이 함수를 가져오면, [lodash와 완전히 똑같이 동작](../../../compatibility.md)해요.
:::
`value`를 안전한 정수로 변환해요. 안전한 정수란, JavaScript의 `number` 타입으로 정확하게 표현되고, 다른 정수로 반올림되지 않는 정수예요.
`value`를 안전한 정수로 변환해요. 안전한 정수란, JavaScript의 `number` 타입으로 정확하게 표현되고, 다른 정수로 반올림되지 않는 정수예요.
무한한 값인 경우, 최대 또는 최소인 안전한 정수로 변환돼요. 소숫점 아래 숫자는 버려요.

View File

@ -134,5 +134,3 @@ const trailingOnlyFn = throttle(
// 계속 호출하더라도 1초마다 'Trailing-only function executed'를 로깅해요.
trailingOnlyFn();
```

View File

@ -6,9 +6,9 @@ This function is only available in `es-toolkit/compat` for compatibility reasons
When imported from `es-toolkit/compat`, it behaves exactly like lodash and provides the same functionalities, as detailed [here](../../../compatibility.md).
:::
Converts `value` to a safe integer.
Converts `value` to a safe integer.
A safe integer is an integer that can be exactly represented as a double precision number, and no other integer rounds to it under any IEEE-754 rounding mode.
A safe integer is an integer that can be exactly represented as a double precision number, and no other integer rounds to it under any IEEE-754 rounding mode.
If the value is infinite, it is converted to the maximum or minimum safe integer. Any decimal points are removed by truncating the value.