fd22b0bf58
V2 (Laravel re-make)
10 lines
170 B
Markdown
10 lines
170 B
Markdown
# `Function.identity` _(ext/function/identity)_
|
|
|
|
Returns input argument.
|
|
|
|
```javascript
|
|
const identity = require("ext/function/identity");
|
|
|
|
identity("foo"); // "foo"
|
|
```
|