6 lines
68 B
JavaScript
6 lines
68 B
JavaScript
|
function _identity(x) {
|
||
|
return x;
|
||
|
}
|
||
|
|
||
|
export { _identity as _ };
|