Files
2026-01-09 14:52:46 +00:00

7 lines
99 B
JavaScript

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