mirror of
https://github.com/JasonYANG170/IOTConnect-Web.git
synced 2024-11-23 20:26:28 +00: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"
|
|
```
|