UNPKG

156 BJavaScriptView Raw
1
2
3 /**
4 * Returns the first argument provided to it.
5 */
6 function identity(val){
7 return val;
8 }
9
10 module.exports = identity;
11
12