mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-24 05:14:06 -06:00
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"
|
|
```
|