Files
2026-01-12 09:12:41 +00:00

7 lines
99 B
JavaScript

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