Files
2025-05-15 13:32:55 +10:00

7 lines
99 B
JavaScript

/**
* Returns the first argument it receives.
*/
export function identityFunc(x) {
return x;
}