toSnakeCaseKeys
객체와 배열의 모든 키를 스네이크 표기법으로 변환한 새로운 객체를 반환해요.
스네이크 표기법은 여러 단어로 구성된 식별자에서 각 단어를 소문자로 작성하고, 단어 사이를 밑줄(_)로 연결하는 명명 규칙이에요. 예를 들어서, snake_case 처럼 작성해요.
typescript
const snakeCased = toSnakeCaseKeys(obj);레퍼런스
toSnakeCaseKeys(obj)
객체의 모든 키를 snake_case로 변환하고 싶을 때 toSnakeCaseKeys를 사용하세요. 중첩된 객체와 배열 내의 객체들도 재귀적으로 변환돼요.
typescript
import { toSnakeCaseKeys } from 'es-toolkit/object';
// 기본 객체 변환
const obj = { userId: 1, firstName: 'John', lastName: 'Doe' };
const result = toSnakeCaseKeys(obj);
// result는 { user_id: 1, first_name: 'John', last_name: 'Doe' }가 돼요
// 배열 내 객체들도 변환해요
const users = [
{ userId: 1, firstName: 'John' },
{ userId: 2, firstName: 'Jane' },
];
const convertedUsers = toSnakeCaseKeys(users);
// convertedUsers는 [{ user_id: 1, first_name: 'John' }, { user_id: 2, first_name: 'Jane' }]가 돼요
// 중첩된 객체도 완전히 변환돼요
const nested = {
userData: {
userId: 1,
contactInfo: {
emailAddress: 'john@example.com',
phoneNumber: '123-456-7890',
},
},
};
const nestedResult = toSnakeCaseKeys(nested);
// nestedResult는 {
// user_data: {
// user_id: 1,
// contact_info: {
// email_address: 'john@example.com',
// phone_number: '123-456-7890'
// }
// }
// }가 돼요파라미터
obj(T): 키를 snake_case로 변환할 객체, 배열, 또는 원시 값이에요.
반환 값
(ToSnakeCaseKeys<T>): 모든 키가 snake_case로 변환된 새로운 객체를 반환해요.

