UNPKG

107 BJavaScriptView Raw
1/**
2 * Returns the first argument it receives.
3 */
4export default function identityFunc(x) {
5 return x;
6}