'use strict'; /** * Returns the first argument passed to the function. * * @name .identity * @return {*} * @api public */ module.exports = function identity(val) { return val; };