mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-21 18:48:37 +00:00
9 lines
170 B
Markdown
9 lines
170 B
Markdown
# `Function.identity` _(ext/function/identity)_
|
|
|
|
Returns input argument.
|
|
|
|
```javascript
|
|
const identity = require("ext/function/identity");
|
|
|
|
identity("foo"); // "foo"
|
|
```
|