es-toolkit/docs/ja/reference/function/identity.md
2024-10-24 18:10:25 +09:00

382 B

identity

入力された値を変更せずに返します。

インターフェース

function identity<T>(x: T): T;

パラメータ

  • x (T): 返される値。

戻り値

(T): 入力値。

// Returns 5
identity(5);

// Returns 'hello'
identity('hello');

// Returns { key: 'value' }
identity({ key: 'value' });