utilscommonidentityOn this pageidentity 인자로 받은 값을 그대로 반환하는 함수입니다. Code 🔗 실제 구현 코드 확인 Interface typescriptconst identity: <T>(value: T) => T; Usage typescriptimport { identity } from '@modern-kit/utils';identity(1); // 1identity('foo'); // 'foo'identity([]); // []