Skip to main content

identity

인자로 받은 값을 그대로 반환하는 함수입니다.


Code

🔗 실제 구현 코드 확인

Interface

typescript
const identity: <T>(value: T) => T;

Usage

typescript
import { identity } from '@modern-kit/utils';

identity(1); // 1
identity('foo'); // 'foo'
identity([]); // []