10 lines
170 B
Markdown
Raw Permalink Normal View History

2025-05-22 16:37:43 +08:00
# `Function.identity` _(ext/function/identity)_
Returns input argument.
```javascript
const identity = require("ext/function/identity");
identity("foo"); // "foo"
```