7 lines
115 B
JavaScript
7 lines
115 B
JavaScript
/**
|
|
* Takes a single argument and always returns its input value.
|
|
*/
|
|
export function identity(x) {
|
|
return x;
|
|
}
|